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

Unified Diff: third_party/WebKit/Source/web/InspectorEmulationAgent.h

Issue 2877363002: Move more classes over to use WebLocalFrameBase instead of WebLocalFrameImpl. (Closed)
Patch Set: Created 3 years, 7 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: third_party/WebKit/Source/web/InspectorEmulationAgent.h
diff --git a/third_party/WebKit/Source/web/InspectorEmulationAgent.h b/third_party/WebKit/Source/web/InspectorEmulationAgent.h
index 228106c8898b7adfdde608c72ad36f307272126e..1bed5643add8c7394dbd0eda51a1178743aad551 100644
--- a/third_party/WebKit/Source/web/InspectorEmulationAgent.h
+++ b/third_party/WebKit/Source/web/InspectorEmulationAgent.h
@@ -10,7 +10,7 @@
namespace blink {
-class WebLocalFrameImpl;
+class WebLocalFrameBase;
class WebViewBase;
namespace protocol {
@@ -31,7 +31,7 @@ class InspectorEmulationAgent final
virtual void SetCPUThrottlingRate(double rate) {}
};
- static InspectorEmulationAgent* Create(WebLocalFrameImpl*, Client*);
+ static InspectorEmulationAgent* Create(WebLocalFrameBase*, Client*);
~InspectorEmulationAgent() override;
// protocol::Dispatcher::EmulationCommandHandler implementation.
@@ -58,11 +58,11 @@ class InspectorEmulationAgent final
DECLARE_VIRTUAL_TRACE();
private:
- InspectorEmulationAgent(WebLocalFrameImpl*, Client*);
+ InspectorEmulationAgent(WebLocalFrameBase*, Client*);
WebViewBase* GetWebViewBase();
void VirtualTimeBudgetExpired();
- Member<WebLocalFrameImpl> web_local_frame_impl_;
+ Member<WebLocalFrameBase> web_local_frame_;
Client* client_;
};
« no previous file with comments | « third_party/WebKit/Source/web/IndexedDBClientImpl.cpp ('k') | third_party/WebKit/Source/web/InspectorEmulationAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698