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

Side by Side Diff: content/child/web_url_loader_impl.h

Issue 220553002: Revert of Introduce an intra-priority level sorting value - Chromium Side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 8 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
« no previous file with comments | « content/child/resource_dispatcher.cc ('k') | content/child/web_url_loader_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CONTENT_CHILD_WEB_URL_LOADER_IMPL_H_ 5 #ifndef CONTENT_CHILD_WEB_URL_LOADER_IMPL_H_
6 #define CONTENT_CHILD_WEB_URL_LOADER_IMPL_H_ 6 #define CONTENT_CHILD_WEB_URL_LOADER_IMPL_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "content/common/content_export.h" 9 #include "content/common/content_export.h"
10 #include "third_party/WebKit/public/platform/WebURLLoader.h" 10 #include "third_party/WebKit/public/platform/WebURLLoader.h"
(...skipping 21 matching lines...) Expand all
32 virtual void loadSynchronously( 32 virtual void loadSynchronously(
33 const blink::WebURLRequest& request, 33 const blink::WebURLRequest& request,
34 blink::WebURLResponse& response, 34 blink::WebURLResponse& response,
35 blink::WebURLError& error, 35 blink::WebURLError& error,
36 blink::WebData& data); 36 blink::WebData& data);
37 virtual void loadAsynchronously( 37 virtual void loadAsynchronously(
38 const blink::WebURLRequest& request, 38 const blink::WebURLRequest& request,
39 blink::WebURLLoaderClient* client); 39 blink::WebURLLoaderClient* client);
40 virtual void cancel(); 40 virtual void cancel();
41 virtual void setDefersLoading(bool value); 41 virtual void setDefersLoading(bool value);
42 virtual void didChangePriority(blink::WebURLRequest::Priority new_priority, 42 virtual void didChangePriority(blink::WebURLRequest::Priority new_priority);
43 int intra_priority_value);
44 43
45 private: 44 private:
46 class Context; 45 class Context;
47 scoped_refptr<Context> context_; 46 scoped_refptr<Context> context_;
48 }; 47 };
49 48
50 } // namespace content 49 } // namespace content
51 50
52 #endif // CONTENT_CHILD_WEB_URL_LOADER_IMPL_H_ 51 #endif // CONTENT_CHILD_WEB_URL_LOADER_IMPL_H_
OLDNEW
« no previous file with comments | « content/child/resource_dispatcher.cc ('k') | content/child/web_url_loader_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698