mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-19 21:50:42 +01:00
Add missing override keyword (issue #2224)
This commit is contained in:
parent
e260cbb922
commit
934eaba67c
@ -969,14 +969,14 @@ class OSRTestHandler : public RoutingTestHandler,
|
||||
return false;
|
||||
}
|
||||
|
||||
void OnTakeFocus(CefRefPtr<CefBrowser> browser, bool next) {
|
||||
void OnTakeFocus(CefRefPtr<CefBrowser> browser, bool next) override {
|
||||
if (test_type_ == OSR_TEST_TAKE_FOCUS) {
|
||||
EXPECT_TRUE(true);
|
||||
DestroySucceededTestSoon();
|
||||
}
|
||||
}
|
||||
|
||||
void OnGotFocus(CefRefPtr<CefBrowser> browser) {
|
||||
void OnGotFocus(CefRefPtr<CefBrowser> browser) override {
|
||||
if (test_type_ == OSR_TEST_GOT_FOCUS) {
|
||||
EXPECT_TRUE(true);
|
||||
DestroySucceededTestSoon();
|
||||
|
Loading…
x
Reference in New Issue
Block a user