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

Unified Diff: third_party/WebKit/Source/core/html/parser/HTMLResourcePreloader.h

Issue 2043753002: Declarative resource hints go through mojo IPC to //content Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use unique_ptr to avoid memory leaks in unit tests 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/parser/HTMLResourcePreloader.h
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLResourcePreloader.h b/third_party/WebKit/Source/core/html/parser/HTMLResourcePreloader.h
index 29ddf17c574e2bce23e8509bcf9d9598b3d8f087..9b4350215be80ee20aa282cad02496825731cef0 100644
--- a/third_party/WebKit/Source/core/html/parser/HTMLResourcePreloader.h
+++ b/third_party/WebKit/Source/core/html/parser/HTMLResourcePreloader.h
@@ -30,7 +30,6 @@
#include "core/fetch/Resource.h"
#include "core/html/parser/PreloadRequest.h"
#include "core/html/parser/ResourcePreloader.h"
-#include "core/loader/NetworkHintsInterface.h"
#include "wtf/CurrentTime.h"
#include "wtf/text/TextPosition.h"
@@ -44,7 +43,7 @@ public:
DECLARE_TRACE();
protected:
- void preload(PassOwnPtr<PreloadRequest>, const NetworkHintsInterface&) override;
+ void preload(PassOwnPtr<PreloadRequest>) override;
private:
explicit HTMLResourcePreloader(Document&);

Powered by Google App Engine
This is Rietveld 408576698