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

Unified Diff: content/renderer/dom_storage/dom_storage_dispatcher.cc

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (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: content/renderer/dom_storage/dom_storage_dispatcher.cc
diff --git a/content/renderer/dom_storage/dom_storage_dispatcher.cc b/content/renderer/dom_storage/dom_storage_dispatcher.cc
index 6764a9bc0177705f2e6f2d3fe09c4c695ad0d309..6d4496632bb1afe8c741dcab453ef7b875145f61 100644
--- a/content/renderer/dom_storage/dom_storage_dispatcher.cc
+++ b/content/renderer/dom_storage/dom_storage_dispatcher.cc
@@ -41,7 +41,7 @@ class MessageThrottlingFilter : public IPC::MessageFilter {
private:
virtual ~MessageThrottlingFilter() {}
- virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual bool OnMessageReceived(const IPC::Message& message) override;
int GetPendingCount() { return IncrementPendingCountN(0); }
int IncrementPendingCount() { return IncrementPendingCountN(1); }
@@ -111,18 +111,18 @@ class DomStorageDispatcher::ProxyImpl : public DOMStorageProxy {
// DOMStorageProxy interface for use by DOMStorageCachedArea.
virtual void LoadArea(int connection_id, DOMStorageValuesMap* values,
bool* send_log_get_messages,
- const CompletionCallback& callback) OVERRIDE;
+ const CompletionCallback& callback) override;
virtual void SetItem(int connection_id, const base::string16& key,
const base::string16& value, const GURL& page_url,
- const CompletionCallback& callback) OVERRIDE;
+ const CompletionCallback& callback) override;
virtual void LogGetItem(int connection_id, const base::string16& key,
- const base::NullableString16& value) OVERRIDE;
+ const base::NullableString16& value) override;
virtual void RemoveItem(int connection_id, const base::string16& key,
const GURL& page_url,
- const CompletionCallback& callback) OVERRIDE;
+ const CompletionCallback& callback) override;
virtual void ClearArea(int connection_id,
const GURL& page_url,
- const CompletionCallback& callback) OVERRIDE;
+ const CompletionCallback& callback) override;
private:
// Struct to hold references to our contained areas and
« no previous file with comments | « content/renderer/dom_storage/dom_storage_cached_area_unittest.cc ('k') | content/renderer/external_popup_menu_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698