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

Unified Diff: third_party/WebKit/Source/core/loader/DocumentLoader.h

Issue 2712033002: Part 1 Of Renaming FrameLoaderClient to LocalFrameClient. (Closed)
Patch Set: Update aliases to use "using" statement rather than typedef. Also appears I forgot to add the new f… 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/DocumentLoader.h
diff --git a/third_party/WebKit/Source/core/loader/DocumentLoader.h b/third_party/WebKit/Source/core/loader/DocumentLoader.h
index 2c129530097bb57828b93d17062acf3630deb5e8..88353a1e167762b7d314737b0ba02404a001a399 100644
--- a/third_party/WebKit/Source/core/loader/DocumentLoader.h
+++ b/third_party/WebKit/Source/core/loader/DocumentLoader.h
@@ -51,6 +51,7 @@
#include "public/platform/WebLoadingBehaviorFlag.h"
#include "wtf/HashSet.h"
#include "wtf/RefPtr.h"
+
#include <memory>
namespace blink {
@@ -59,12 +60,15 @@ class ApplicationCacheHost;
class ResourceFetcher;
class DocumentInit;
class LocalFrame;
+class LocalFrameClient;
class FrameLoader;
-class FrameLoaderClient;
class ResourceTimingInfo;
class WebDocumentSubresourceFilter;
struct ViewportDescriptionWrapper;
+// TODO(slangley): Remove this once references to FrameLoaderClient are removed.
+using FrameLoaderClient = LocalFrameClient;
haraken 2017/02/24 02:26:06 Avoid writing the using statement in multiple plac
+
class CORE_EXPORT DocumentLoader
: public GarbageCollectedFinalized<DocumentLoader>,
private RawResourceClient {

Powered by Google App Engine
This is Rietveld 408576698