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

Side by Side Diff: third_party/WebKit/Source/web/InspectorEmulationAgent.h

Issue 2012753003: DevTools: consolidate protocol generators for front-end, backend and type builder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 InspectorEmulationAgent_h 5 #ifndef InspectorEmulationAgent_h
6 #define InspectorEmulationAgent_h 6 #define InspectorEmulationAgent_h
7 7
8 #include "core/inspector/InspectorBaseAgent.h" 8 #include "core/inspector/InspectorBaseAgent.h"
9 9
10 namespace blink { 10 namespace blink {
11 11
12 class WebLocalFrameImpl; 12 class WebLocalFrameImpl;
13 class WebViewImpl; 13 class WebViewImpl;
14 14
15 class InspectorEmulationAgent final : public InspectorBaseAgent<InspectorEmulati onAgent, protocol::Emulation::Frontend>, public protocol::Emulation::Backend { 15 class InspectorEmulationAgent final : public InspectorBaseAgent<protocol::Emulat ion::Metainfo> {
16 WTF_MAKE_NONCOPYABLE(InspectorEmulationAgent); 16 WTF_MAKE_NONCOPYABLE(InspectorEmulationAgent);
17 public: 17 public:
18 class Client { 18 class Client {
19 public: 19 public:
20 virtual ~Client() {} 20 virtual ~Client() {}
21 21
22 virtual void setCPUThrottlingRate(double rate) {} 22 virtual void setCPUThrottlingRate(double rate) {}
23 }; 23 };
24 24
25 static InspectorEmulationAgent* create(WebLocalFrameImpl*, Client*); 25 static InspectorEmulationAgent* create(WebLocalFrameImpl*, Client*);
(...skipping 17 matching lines...) Expand all
43 InspectorEmulationAgent(WebLocalFrameImpl*, Client*); 43 InspectorEmulationAgent(WebLocalFrameImpl*, Client*);
44 WebViewImpl* webViewImpl(); 44 WebViewImpl* webViewImpl();
45 45
46 Member<WebLocalFrameImpl> m_webLocalFrameImpl; 46 Member<WebLocalFrameImpl> m_webLocalFrameImpl;
47 Client* m_client; 47 Client* m_client;
48 }; 48 };
49 49
50 } // namespace blink 50 } // namespace blink
51 51
52 #endif // !defined(InspectorEmulationAgent_h) 52 #endif // !defined(InspectorEmulationAgent_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698