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

Unified Diff: content/renderer/v8_value_converter_impl.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
« no previous file with comments | « content/renderer/text_input_client_observer.h ('k') | content/renderer/v8_value_converter_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/v8_value_converter_impl.h
diff --git a/content/renderer/v8_value_converter_impl.h b/content/renderer/v8_value_converter_impl.h
index affbed7353fc42638e5d0d80d63a9606a38b49b2..7cf4da0014b7c4db92639c3e56ab0e765d832ec0 100644
--- a/content/renderer/v8_value_converter_impl.h
+++ b/content/renderer/v8_value_converter_impl.h
@@ -26,17 +26,17 @@ class CONTENT_EXPORT V8ValueConverterImpl : public V8ValueConverter {
V8ValueConverterImpl();
// V8ValueConverter implementation.
- virtual void SetDateAllowed(bool val) OVERRIDE;
- virtual void SetRegExpAllowed(bool val) OVERRIDE;
- virtual void SetFunctionAllowed(bool val) OVERRIDE;
- virtual void SetStripNullFromObjects(bool val) OVERRIDE;
- virtual void SetStrategy(Strategy* strategy) OVERRIDE;
+ virtual void SetDateAllowed(bool val) override;
+ virtual void SetRegExpAllowed(bool val) override;
+ virtual void SetFunctionAllowed(bool val) override;
+ virtual void SetStripNullFromObjects(bool val) override;
+ virtual void SetStrategy(Strategy* strategy) override;
virtual v8::Handle<v8::Value> ToV8Value(
const base::Value* value,
- v8::Handle<v8::Context> context) const OVERRIDE;
+ v8::Handle<v8::Context> context) const override;
virtual base::Value* FromV8Value(
v8::Handle<v8::Value> value,
- v8::Handle<v8::Context> context) const OVERRIDE;
+ v8::Handle<v8::Context> context) const override;
private:
friend class ScopedAvoidIdentityHashForTesting;
« no previous file with comments | « content/renderer/text_input_client_observer.h ('k') | content/renderer/v8_value_converter_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698