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

Side by Side Diff: android_webview/browser/aw_browser_context.h

Issue 99683006: [Android WebView] Only send extra headers for the main page (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ben's comments addressed, rebased Created 7 years 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 ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ 5 #ifndef ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_
6 #define ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ 6 #define ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "android_webview/browser/aw_download_manager_delegate.h" 10 #include "android_webview/browser/aw_download_manager_delegate.h"
(...skipping 11 matching lines...) Expand all
22 class GURL; 22 class GURL;
23 class PrefService; 23 class PrefService;
24 24
25 namespace content { 25 namespace content {
26 class ResourceContext; 26 class ResourceContext;
27 class WebContents; 27 class WebContents;
28 } 28 }
29 29
30 namespace net { 30 namespace net {
31 class CookieStore; 31 class CookieStore;
32 class URLRequestContextGetter;
benm (inactive) 2013/12/10 14:27:46 nit: needed?
mnaganov (inactive) 2013/12/10 15:16:55 Nope. Removed.
32 } 33 }
33 34
34 namespace visitedlink { 35 namespace visitedlink {
35 class VisitedLinkMaster; 36 class VisitedLinkMaster;
36 } 37 }
37 38
38 namespace android_webview { 39 namespace android_webview {
39 40
40 class AwFormDatabaseService; 41 class AwFormDatabaseService;
41 class AwQuotaManagerBridge; 42 class AwQuotaManagerBridge;
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 scoped_ptr<content::ResourceContext> resource_context_; 129 scoped_ptr<content::ResourceContext> resource_context_;
129 130
130 scoped_ptr<PrefService> user_pref_service_; 131 scoped_ptr<PrefService> user_pref_service_;
131 132
132 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext); 133 DISALLOW_COPY_AND_ASSIGN(AwBrowserContext);
133 }; 134 };
134 135
135 } // namespace android_webview 136 } // namespace android_webview
136 137
137 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_ 138 #endif // ANDROID_WEBVIEW_BROWSER_AW_BROWSER_CONTEXT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698