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

Unified Diff: content/renderer/pepper/pepper_try_catch.h

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/pepper/pepper_try_catch.h
diff --git a/content/renderer/pepper/pepper_try_catch.h b/content/renderer/pepper/pepper_try_catch.h
index 382c378166f985eb88853e66263f965f4d5de848..6ac42d16bb1484a6307188b0920b29299c021f8a 100644
--- a/content/renderer/pepper/pepper_try_catch.h
+++ b/content/renderer/pepper/pepper_try_catch.h
@@ -64,9 +64,9 @@ class PepperTryCatchV8 : public PepperTryCatch {
PP_Var* exception() { return &exception_; }
// PepperTryCatch
- virtual void SetException(const char* message) OVERRIDE;
- virtual bool HasException() OVERRIDE;
- virtual v8::Handle<v8::Context> GetContext() OVERRIDE;
+ virtual void SetException(const char* message) override;
+ virtual bool HasException() override;
+ virtual v8::Handle<v8::Context> GetContext() override;
private:
PP_Var exception_;
@@ -85,9 +85,9 @@ class PepperTryCatchVar : public PepperTryCatch {
virtual ~PepperTryCatchVar();
// PepperTryCatch
- virtual void SetException(const char* message) OVERRIDE;
- virtual bool HasException() OVERRIDE;
- virtual v8::Handle<v8::Context> GetContext() OVERRIDE;
+ virtual void SetException(const char* message) override;
+ virtual bool HasException() override;
+ virtual v8::Handle<v8::Context> GetContext() override;
private:
// Code which uses PepperTryCatchVar doesn't typically have a HandleScope,
« no previous file with comments | « content/renderer/pepper/pepper_proxy_channel_delegate_impl.h ('k') | content/renderer/pepper/pepper_url_loader_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698