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

Unified Diff: third_party/WebKit/Source/core/loader/FrameLoader.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/loader/FrameLoader.h
diff --git a/third_party/WebKit/Source/core/loader/FrameLoader.h b/third_party/WebKit/Source/core/loader/FrameLoader.h
index 7ebb01e2e84f64488e834a04abd88dfe85bb6a79..30988a2e17a4a91d05bbd853c9e2b65a2788c8e0 100644
--- a/third_party/WebKit/Source/core/loader/FrameLoader.h
+++ b/third_party/WebKit/Source/core/loader/FrameLoader.h
@@ -50,6 +50,7 @@
#include "public/platform/WebInsecureRequestPolicy.h"
#include "wtf/Forward.h"
#include "wtf/HashSet.h"
+
#include <memory>
namespace blink {
@@ -57,7 +58,7 @@ namespace blink {
class DocumentLoader;
class HTMLFormElement;
class Frame;
-class FrameLoaderClient;
+class LocalFrameClient;
class ProgressTracker;
class ResourceError;
class SerializedScriptValue;
@@ -129,7 +130,7 @@ class CORE_EXPORT FrameLoader final {
bool shouldTreatURLAsSameAsCurrent(const KURL&) const;
bool shouldTreatURLAsSrcdocDocument(const KURL&) const;
- FrameLoaderClient* client() const;
+ LocalFrameClient* client() const;
void setDefersLoading(bool);

Powered by Google App Engine
This is Rietveld 408576698