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

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

Issue 671663002: Standardize usage of virtual/override/final in content/ (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 dd5a843f9e20c932dbc9f4d033f734b9c4b7a063..783f2384228662f31839f7513b811199c920f75f 100644
--- a/content/shell/renderer/test_runner/web_ax_object_proxy.h
+++ b/content/shell/renderer/test_runner/web_ax_object_proxy.h
@@ -32,10 +32,10 @@ class WebAXObjectProxy : public gin::Wrappable<WebAXObjectProxy> {
static gin::WrapperInfo kWrapperInfo;
WebAXObjectProxy(const blink::WebAXObject& object, Factory* factory);
- virtual ~WebAXObjectProxy();
+ ~WebAXObjectProxy() override;
// gin::Wrappable:
- virtual gin::ObjectTemplateBuilder GetObjectTemplateBuilder(
+ gin::ObjectTemplateBuilder GetObjectTemplateBuilder(
v8::Isolate* isolate) override;
virtual v8::Handle<v8::Object> GetChildAtIndex(unsigned index);
@@ -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;
+ v8::Handle<v8::Object> GetChildAtIndex(unsigned index) override;
+ bool IsRoot() const override;
};
@@ -151,11 +151,10 @@ class RootWebAXObjectProxy : public WebAXObjectProxy {
class WebAXObjectProxyList : public WebAXObjectProxy::Factory {
public:
WebAXObjectProxyList();
- virtual ~WebAXObjectProxyList();
+ ~WebAXObjectProxyList() override;
void Clear();
- virtual v8::Handle<v8::Object> GetOrCreate(
- const blink::WebAXObject&) override;
+ v8::Handle<v8::Object> GetOrCreate(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_test_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698