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

Side by Side Diff: content/public/browser/resource_context.h

Issue 344493002: Move all remaining appcache-related code to content namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 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 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 CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_
6 #define CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_ 6 #define CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "base/supports_user_data.h" 13 #include "base/supports_user_data.h"
14 #include "build/build_config.h" 14 #include "build/build_config.h"
15 #include "content/common/content_export.h" 15 #include "content/common/content_export.h"
16 16
17 class GURL; 17 class GURL;
18 18
19 namespace appcache { 19 namespace content {
20 class AppCacheService; 20 class AppCacheService;
jam 2014/06/25 21:51:14 nit: move down to the content section
21 } 21 }
22 22
23 namespace net { 23 namespace net {
24 class ClientCertStore; 24 class ClientCertStore;
25 class HostResolver; 25 class HostResolver;
26 class KeygenHandler; 26 class KeygenHandler;
27 class URLRequestContext; 27 class URLRequestContext;
28 } 28 }
29 29
30 namespace content { 30 namespace content {
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 // 89 //
90 // TODO(perkj): Make this method pure virtual when crbug/315022 is 90 // TODO(perkj): Make this method pure virtual when crbug/315022 is
91 // fixed. 91 // fixed.
92 typedef base::Callback<std::string()> SaltCallback; 92 typedef base::Callback<std::string()> SaltCallback;
93 virtual SaltCallback GetMediaDeviceIDSalt(); 93 virtual SaltCallback GetMediaDeviceIDSalt();
94 }; 94 };
95 95
96 } // namespace content 96 } // namespace content
97 97
98 #endif // CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_ 98 #endif // CONTENT_PUBLIC_BROWSER_RESOURCE_CONTEXT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698