| Index: chrome/browser/geolocation/geolocation_browsertest.cc
|
| ===================================================================
|
| --- chrome/browser/geolocation/geolocation_browsertest.cc (revision 181040)
|
| +++ chrome/browser/geolocation/geolocation_browsertest.cc (working copy)
|
| @@ -80,7 +80,7 @@
|
|
|
| virtual void Observe(int type,
|
| const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) {
|
| + const content::NotificationDetails& details) OVERRIDE {
|
| if (type == content::NOTIFICATION_LOAD_STOP) {
|
| navigation_completed_ = true;
|
| } else if (type == content::NOTIFICATION_DOM_OPERATION_RESPONSE) {
|
| @@ -156,7 +156,7 @@
|
| // content::NotificationObserver
|
| virtual void Observe(int type,
|
| const content::NotificationSource& source,
|
| - const content::NotificationDetails& details) {
|
| + const content::NotificationDetails& details) OVERRIDE {
|
| if (type == chrome::NOTIFICATION_TAB_CONTENTS_INFOBAR_ADDED) {
|
| infobar_ = content::Details<InfoBarAddedDetails>(details).ptr();
|
| ASSERT_TRUE(infobar_->GetIcon());
|
| @@ -211,12 +211,12 @@
|
| started_test_server_(false) {}
|
|
|
| // InProcessBrowserTest
|
| - virtual void SetUpOnMainThread() {
|
| + virtual void SetUpOnMainThread() OVERRIDE {
|
| ui_test_utils::OverrideGeolocation(fake_latitude_, fake_longitude_);
|
| }
|
|
|
| // InProcessBrowserTest
|
| - virtual void TearDownInProcessBrowserTestFixture() {
|
| + virtual void TearDownInProcessBrowserTestFixture() OVERRIDE {
|
| LOG(WARNING) << "TearDownInProcessBrowserTestFixture. Test Finished.";
|
| }
|
|
|
|
|