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

Side by Side Diff: webkit/glue/weburlloader_impl.h

Issue 12243002: Pass WebKit priority changes and parsing messages up to the browser process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rename IPC Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_GLUE_WEBURLLOADER_IMPL_H_ 5 #ifndef WEBKIT_GLUE_WEBURLLOADER_IMPL_H_
6 #define WEBKIT_GLUE_WEBURLLOADER_IMPL_H_ 6 #define WEBKIT_GLUE_WEBURLLOADER_IMPL_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLLoader.h" 9 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLLoader.h"
10 #include "webkit/glue/webkit_glue_export.h" 10 #include "webkit/glue/webkit_glue_export.h"
(...skipping 11 matching lines...) Expand all
22 virtual void loadSynchronously( 22 virtual void loadSynchronously(
23 const WebKit::WebURLRequest& request, 23 const WebKit::WebURLRequest& request,
24 WebKit::WebURLResponse& response, 24 WebKit::WebURLResponse& response,
25 WebKit::WebURLError& error, 25 WebKit::WebURLError& error,
26 WebKit::WebData& data); 26 WebKit::WebData& data);
27 virtual void loadAsynchronously( 27 virtual void loadAsynchronously(
28 const WebKit::WebURLRequest& request, 28 const WebKit::WebURLRequest& request,
29 WebKit::WebURLLoaderClient* client); 29 WebKit::WebURLLoaderClient* client);
30 virtual void cancel(); 30 virtual void cancel();
31 virtual void setDefersLoading(bool value); 31 virtual void setDefersLoading(bool value);
32 virtual void didChangePriority(WebKit::WebURLRequest::Priority new_priority);
32 33
33 private: 34 private:
34 class Context; 35 class Context;
35 scoped_refptr<Context> context_; 36 scoped_refptr<Context> context_;
36 WebKitPlatformSupportImpl* platform_; 37 WebKitPlatformSupportImpl* platform_;
37 }; 38 };
38 39
39 } // namespace webkit_glue 40 } // namespace webkit_glue
40 41
41 #endif // WEBKIT_GLUE_WEBURLLOADER_IMPL_H_ 42 #endif // WEBKIT_GLUE_WEBURLLOADER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698