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

Unified Diff: third_party/WebKit/Source/core/frame/LocalFrame.h

Issue 2712033002: Part 1 Of Renaming FrameLoaderClient to LocalFrameClient. (Closed)
Patch Set: Change all forward declarations of FrameLoaderClient to LocalFrameClient and fix call sites. Created 3 years, 10 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/core/frame/LocalFrame.h
diff --git a/third_party/WebKit/Source/core/frame/LocalFrame.h b/third_party/WebKit/Source/core/frame/LocalFrame.h
index 96b5aa027f6453197df86589220b550554af5461..ed6da8795400797d8cab46609bd0bba30e52a1d9 100644
--- a/third_party/WebKit/Source/core/frame/LocalFrame.h
+++ b/third_party/WebKit/Source/core/frame/LocalFrame.h
@@ -68,6 +68,7 @@ class IntSize;
class LayoutView;
class LayoutViewItem;
class LocalDOMWindow;
+class LocalFrameClient;
class NavigationScheduler;
class Node;
class NodeTraversal;
@@ -88,7 +89,7 @@ class CORE_EXPORT LocalFrame final : public Frame,
friend class LocalFrameTest;
public:
- static LocalFrame* create(FrameLoaderClient*,
+ static LocalFrame* create(LocalFrameClient*,
FrameHost*,
FrameOwner*,
InterfaceProvider* = nullptr,
@@ -218,7 +219,7 @@ class CORE_EXPORT LocalFrame final : public Frame,
InterfaceProvider* interfaceProvider() { return m_interfaceProvider; }
InterfaceRegistry* interfaceRegistry() { return m_interfaceRegistry; }
- FrameLoaderClient* client() const;
+ LocalFrameClient* client() const;
PluginData* pluginData() const;
@@ -227,7 +228,7 @@ class CORE_EXPORT LocalFrame final : public Frame,
private:
friend class FrameNavigationDisabler;
- LocalFrame(FrameLoaderClient*,
+ LocalFrame(LocalFrameClient*,
FrameHost*,
FrameOwner*,
InterfaceProvider*,

Powered by Google App Engine
This is Rietveld 408576698