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

Unified Diff: content/renderer/fetchers/manifest_fetcher.cc

Issue 2928033002: Move GetDocument method from WebFrame to WebLocalFrame. (Closed)
Patch Set: Split a DCHECK in two as suggested by boliu@. Created 3 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: content/renderer/fetchers/manifest_fetcher.cc
diff --git a/content/renderer/fetchers/manifest_fetcher.cc b/content/renderer/fetchers/manifest_fetcher.cc
index f809d53b0d91c0293d58efc81892cdf4ac714da8..d9306828d74c37a9a692fd4094cb5ee2e92ff8a1 100644
--- a/content/renderer/fetchers/manifest_fetcher.cc
+++ b/content/renderer/fetchers/manifest_fetcher.cc
@@ -9,7 +9,7 @@
#include "content/public/renderer/associated_resource_fetcher.h"
#include "third_party/WebKit/public/platform/WebURLRequest.h"
#include "third_party/WebKit/public/web/WebAssociatedURLLoaderOptions.h"
-#include "third_party/WebKit/public/web/WebFrame.h"
+#include "third_party/WebKit/public/web/WebLocalFrame.h"
namespace content {
@@ -23,7 +23,7 @@ ManifestFetcher::~ManifestFetcher() {
Cancel();
}
-void ManifestFetcher::Start(blink::WebFrame* frame,
+void ManifestFetcher::Start(blink::WebLocalFrame* frame,
bool use_credentials,
const Callback& callback) {
callback_ = callback;
@@ -57,4 +57,4 @@ void ManifestFetcher::OnLoadComplete(const blink::WebURLResponse& response,
callback.Run(response, data);
}
-} // namespace content
+} // namespace content
« no previous file with comments | « content/renderer/fetchers/manifest_fetcher.h ('k') | content/renderer/fetchers/multi_resolution_image_resource_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698