Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(253)

Unified Diff: android_webview/common/aw_content_client.h

Issue 623833003: replace OVERRIDE and FINAL with override and final in android_webview/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: android_webview/common/aw_content_client.h
diff --git a/android_webview/common/aw_content_client.h b/android_webview/common/aw_content_client.h
index 697f4e31067c0fd2a92b5228999c7fdf613751f4..55a84e0941872da3ff90ae1d65fce69dc8554192 100644
--- a/android_webview/common/aw_content_client.h
+++ b/android_webview/common/aw_content_client.h
@@ -16,13 +16,13 @@ std::string GetUserAgent();
class AwContentClient : public content::ContentClient {
public:
// ContentClient implementation.
- virtual std::string GetProduct() const OVERRIDE;
- virtual std::string GetUserAgent() const OVERRIDE;
- virtual base::string16 GetLocalizedString(int message_id) const OVERRIDE;
+ virtual std::string GetProduct() const override;
+ virtual std::string GetUserAgent() const override;
+ virtual base::string16 GetLocalizedString(int message_id) const override;
virtual base::StringPiece GetDataResource(
int resource_id,
- ui::ScaleFactor scale_factor) const OVERRIDE;
- virtual bool CanSendWhileSwappedOut(const IPC::Message* message) OVERRIDE;
+ ui::ScaleFactor scale_factor) const override;
+ virtual bool CanSendWhileSwappedOut(const IPC::Message* message) override;
};
} // namespace android_webview
« no previous file with comments | « android_webview/browser/renderer_host/print_manager.h ('k') | android_webview/lib/aw_browser_dependency_factory_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698