diff options
author | pilgrim@chromium.org <pilgrim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-18 07:56:40 +0000 |
---|---|---|
committer | pilgrim@chromium.org <pilgrim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-18 07:56:40 +0000 |
commit | 2a58eb1b70534eb673c569f92731694d6e0dafd7 (patch) | |
tree | f1e4021067996a033c76ff20d541168cbb4c1948 /webkit/glue/resource_fetcher.cc | |
parent | 052b40230bc8a42dcf5a32dad4d85f3c84726afe (diff) | |
download | chromium_src-2a58eb1b70534eb673c569f92731694d6e0dafd7.zip chromium_src-2a58eb1b70534eb673c569f92731694d6e0dafd7.tar.gz chromium_src-2a58eb1b70534eb673c569f92731694d6e0dafd7.tar.bz2 |
Call WebKit::Platform::current() instead of webkitPlatformSupport()
for functions that have been moved to the new Platform layer
Review URL: https://chromiumcodereview.appspot.com/11576057
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173690 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/resource_fetcher.cc')
-rw-r--r-- | webkit/glue/resource_fetcher.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/resource_fetcher.cc b/webkit/glue/resource_fetcher.cc index 94a3e92..686d53a 100644 --- a/webkit/glue/resource_fetcher.cc +++ b/webkit/glue/resource_fetcher.cc @@ -5,10 +5,10 @@ #include "webkit/glue/resource_fetcher.h" #include "base/logging.h" +#include "third_party/WebKit/Source/Platform/chromium/public/Platform.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" -#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebKitPlatformSupport.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLError.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLLoader.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLRequest.h" @@ -54,7 +54,7 @@ void ResourceFetcher::Start(WebFrame* frame) { request.setFirstPartyForCookies(frame->document().firstPartyForCookies()); frame->dispatchWillSendRequest(request); - loader_.reset(WebKit::webKitPlatformSupport()->createURLLoader()); + loader_.reset(WebKit::Platform::current()->createURLLoader()); loader_->loadAsynchronously(request, this); } |