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

Unified Diff: chrome/browser/devtools/devtools_ui_bindings.h

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs 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
« no previous file with comments | « chrome/browser/devtools/devtools_targets_ui.cc ('k') | chrome/browser/devtools/devtools_ui_bindings.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/devtools/devtools_ui_bindings.h
diff --git a/chrome/browser/devtools/devtools_ui_bindings.h b/chrome/browser/devtools/devtools_ui_bindings.h
index c94bc3e287a28f0e139ac7cdd80d0cd9a3714fce..0a8905a6ad3c2cfbed66f6d98727224bb90cd2be 100644
--- a/chrome/browser/devtools/devtools_ui_bindings.h
+++ b/chrome/browser/devtools/devtools_ui_bindings.h
@@ -82,62 +82,62 @@ class DevToolsUIBindings : public content::NotificationObserver,
// content::NotificationObserver overrides.
virtual void Observe(int type,
const content::NotificationSource& source,
- const content::NotificationDetails& details) OVERRIDE;
+ const content::NotificationDetails& details) override;
// content::DevToolsFrontendHost::Delegate implementation.
virtual void HandleMessageFromDevToolsFrontend(
- const std::string& message) OVERRIDE;
+ const std::string& message) override;
virtual void HandleMessageFromDevToolsFrontendToBackend(
- const std::string& message) OVERRIDE;
+ const std::string& message) override;
// content::DevToolsAgentHostClient implementation.
virtual void DispatchProtocolMessage(
content::DevToolsAgentHost* agent_host,
- const std::string& message) OVERRIDE;
+ const std::string& message) override;
virtual void AgentHostClosed(
content::DevToolsAgentHost* agent_host,
- bool replaced_with_another_client) OVERRIDE;
+ bool replaced_with_another_client) override;
// DevToolsEmbedderMessageDispatcher::Delegate implementation.
- virtual void ActivateWindow() OVERRIDE;
- virtual void CloseWindow() OVERRIDE;
- virtual void LoadCompleted() OVERRIDE;
- virtual void SetInspectedPageBounds(const gfx::Rect& rect) OVERRIDE;
- virtual void InspectElementCompleted() OVERRIDE;
- virtual void InspectedURLChanged(const std::string& url) OVERRIDE;
- virtual void MoveWindow(int x, int y) OVERRIDE;
- virtual void SetIsDocked(bool is_docked) OVERRIDE;
- virtual void OpenInNewTab(const std::string& url) OVERRIDE;
+ virtual void ActivateWindow() override;
+ virtual void CloseWindow() override;
+ virtual void LoadCompleted() override;
+ virtual void SetInspectedPageBounds(const gfx::Rect& rect) override;
+ virtual void InspectElementCompleted() override;
+ virtual void InspectedURLChanged(const std::string& url) override;
+ virtual void MoveWindow(int x, int y) override;
+ virtual void SetIsDocked(bool is_docked) override;
+ virtual void OpenInNewTab(const std::string& url) override;
virtual void SaveToFile(const std::string& url,
const std::string& content,
- bool save_as) OVERRIDE;
+ bool save_as) override;
virtual void AppendToFile(const std::string& url,
- const std::string& content) OVERRIDE;
- virtual void RequestFileSystems() OVERRIDE;
- virtual void AddFileSystem() OVERRIDE;
- virtual void RemoveFileSystem(const std::string& file_system_path) OVERRIDE;
+ const std::string& content) override;
+ virtual void RequestFileSystems() override;
+ virtual void AddFileSystem() override;
+ virtual void RemoveFileSystem(const std::string& file_system_path) override;
virtual void UpgradeDraggedFileSystemPermissions(
- const std::string& file_system_url) OVERRIDE;
+ const std::string& file_system_url) override;
virtual void IndexPath(int request_id,
- const std::string& file_system_path) OVERRIDE;
- virtual void StopIndexing(int request_id) OVERRIDE;
+ const std::string& file_system_path) override;
+ virtual void StopIndexing(int request_id) override;
virtual void SearchInPath(int request_id,
const std::string& file_system_path,
- const std::string& query) OVERRIDE;
- virtual void SetWhitelistedShortcuts(const std::string& message) OVERRIDE;
- virtual void ZoomIn() OVERRIDE;
- virtual void ZoomOut() OVERRIDE;
- virtual void ResetZoom() OVERRIDE;
+ const std::string& query) override;
+ virtual void SetWhitelistedShortcuts(const std::string& message) override;
+ virtual void ZoomIn() override;
+ virtual void ZoomOut() override;
+ virtual void ResetZoom() override;
virtual void OpenUrlOnRemoteDeviceAndInspect(const std::string& browser_id,
- const std::string& url) OVERRIDE;
- virtual void SetDeviceCountUpdatesEnabled(bool enabled) OVERRIDE;
- virtual void SetDevicesUpdatesEnabled(bool enabled) OVERRIDE;
- virtual void SendMessageToBrowser(const std::string& message) OVERRIDE;
+ const std::string& url) override;
+ virtual void SetDeviceCountUpdatesEnabled(bool enabled) override;
+ virtual void SetDevicesUpdatesEnabled(bool enabled) override;
+ virtual void SendMessageToBrowser(const std::string& message) override;
void EnableRemoteDeviceCounter(bool enable);
// DevToolsAndroidBridge::DeviceCountListener override:
- virtual void DeviceCountChanged(int count) OVERRIDE;
+ virtual void DeviceCountChanged(int count) override;
// Forwards discovered devices to frontend.
virtual void DevicesUpdated(const std::string& source,
« no previous file with comments | « chrome/browser/devtools/devtools_targets_ui.cc ('k') | chrome/browser/devtools/devtools_ui_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698