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

Unified Diff: content/shell/renderer/test_runner/web_ax_object_proxy.h

Issue 629143003: Replace OVERRIDE and FINAL with override and final in content/shell/[a-s]* (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/shell/renderer/test_runner/web_ax_object_proxy.h
diff --git a/content/shell/renderer/test_runner/web_ax_object_proxy.h b/content/shell/renderer/test_runner/web_ax_object_proxy.h
index fd300a166166b84a37170e4a29c83e3eab6a35d1..dd5a843f9e20c932dbc9f4d033f734b9c4b7a063 100644
--- a/content/shell/renderer/test_runner/web_ax_object_proxy.h
+++ b/content/shell/renderer/test_runner/web_ax_object_proxy.h
@@ -36,7 +36,7 @@ class WebAXObjectProxy : public gin::Wrappable<WebAXObjectProxy> {
// gin::Wrappable:
virtual gin::ObjectTemplateBuilder GetObjectTemplateBuilder(
- v8::Isolate* isolate) OVERRIDE;
+ v8::Isolate* isolate) override;
virtual v8::Handle<v8::Object> GetChildAtIndex(unsigned index);
virtual bool IsRoot() const;
@@ -140,8 +140,8 @@ class RootWebAXObjectProxy : public WebAXObjectProxy {
public:
RootWebAXObjectProxy(const blink::WebAXObject&, Factory*);
- virtual v8::Handle<v8::Object> GetChildAtIndex(unsigned index) OVERRIDE;
- virtual bool IsRoot() const OVERRIDE;
+ virtual v8::Handle<v8::Object> GetChildAtIndex(unsigned index) override;
+ virtual bool IsRoot() const override;
};
@@ -155,7 +155,7 @@ class WebAXObjectProxyList : public WebAXObjectProxy::Factory {
void Clear();
virtual v8::Handle<v8::Object> GetOrCreate(
- const blink::WebAXObject&) OVERRIDE;
+ const blink::WebAXObject&) override;
v8::Handle<v8::Object> CreateRoot(const blink::WebAXObject&);
private:
« no previous file with comments | « content/shell/renderer/test_runner/text_input_controller.cc ('k') | content/shell/renderer/test_runner/web_frame_test_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698