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

Side by Side Diff: content/renderer/devtools/devtools_client.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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CLIENT_H_ 5 #ifndef CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CLIENT_H_
6 #define CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CLIENT_H_ 6 #define CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CLIENT_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 18 matching lines...) Expand all
29 // code in glue 29 // code in glue
30 class CONTENT_EXPORT DevToolsClient 30 class CONTENT_EXPORT DevToolsClient
31 : public RenderViewObserver, 31 : public RenderViewObserver,
32 NON_EXPORTED_BASE(public blink::WebDevToolsFrontendClient) { 32 NON_EXPORTED_BASE(public blink::WebDevToolsFrontendClient) {
33 public: 33 public:
34 explicit DevToolsClient(RenderViewImpl* render_view); 34 explicit DevToolsClient(RenderViewImpl* render_view);
35 virtual ~DevToolsClient(); 35 virtual ~DevToolsClient();
36 36
37 private: 37 private:
38 // WebDevToolsFrontendClient implementation. 38 // WebDevToolsFrontendClient implementation.
39 virtual void sendMessageToBackend(const blink::WebString&) OVERRIDE; 39 virtual void sendMessageToBackend(const blink::WebString&) override;
40 virtual void sendMessageToEmbedder(const blink::WebString&) OVERRIDE; 40 virtual void sendMessageToEmbedder(const blink::WebString&) override;
41 41
42 virtual bool isUnderTest() OVERRIDE; 42 virtual bool isUnderTest() override;
43 43
44 void OnDispatchOnInspectorFrontend(const std::string& message); 44 void OnDispatchOnInspectorFrontend(const std::string& message);
45 45
46 scoped_ptr<blink::WebDevToolsFrontend> web_tools_frontend_; 46 scoped_ptr<blink::WebDevToolsFrontend> web_tools_frontend_;
47 47
48 DISALLOW_COPY_AND_ASSIGN(DevToolsClient); 48 DISALLOW_COPY_AND_ASSIGN(DevToolsClient);
49 }; 49 };
50 50
51 } // namespace content 51 } // namespace content
52 52
53 #endif // CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CLIENT_H_ 53 #endif // CONTENT_RENDERER_DEVTOOLS_DEVTOOLS_CLIENT_H_
OLDNEW
« no previous file with comments | « content/renderer/devtools/devtools_agent_filter.h ('k') | content/renderer/dom_automation_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698