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

Side by Side Diff: net/url_request/url_request.h

Issue 10696176: Move UserScript and related into extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 5 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 | « chrome/test/base/testing_profile.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 NET_URL_REQUEST_URL_REQUEST_H_ 5 #ifndef NET_URL_REQUEST_URL_REQUEST_H_
6 #define NET_URL_REQUEST_URL_REQUEST_H_ 6 #define NET_URL_REQUEST_URL_REQUEST_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 17 matching lines...) Expand all
28 #include "net/url_request/url_request_status.h" 28 #include "net/url_request/url_request_status.h"
29 29
30 class FilePath; 30 class FilePath;
31 // Temporary layering violation to allow existing users of a deprecated 31 // Temporary layering violation to allow existing users of a deprecated
32 // interface. 32 // interface.
33 class AutoUpdateInterceptor; 33 class AutoUpdateInterceptor;
34 class ChildProcessSecurityPolicyTest; 34 class ChildProcessSecurityPolicyTest;
35 class ComponentUpdateInterceptor; 35 class ComponentUpdateInterceptor;
36 class TestAutomationProvider; 36 class TestAutomationProvider;
37 class URLRequestAutomationJob; 37 class URLRequestAutomationJob;
38 class UserScriptListenerTest;
39 38
40 namespace base { 39 namespace base {
41 namespace debug { 40 namespace debug {
42 class StackTrace; 41 class StackTrace;
43 } 42 }
44 } 43 }
45 44
46 // Temporary layering violation to allow existing users of a deprecated 45 // Temporary layering violation to allow existing users of a deprecated
47 // interface. 46 // interface.
48 namespace appcache { 47 namespace appcache {
49 class AppCacheInterceptor; 48 class AppCacheInterceptor;
50 class AppCacheRequestHandlerTest; 49 class AppCacheRequestHandlerTest;
51 class AppCacheURLRequestJobTest; 50 class AppCacheURLRequestJobTest;
52 } 51 }
53 52
54 // Temporary layering violation to allow existing users of a deprecated 53 // Temporary layering violation to allow existing users of a deprecated
55 // interface. 54 // interface.
56 namespace content { 55 namespace content {
57 class ResourceDispatcherHostTest; 56 class ResourceDispatcherHostTest;
58 } 57 }
59 58
59 namespace extensions {
Ryan Sleevi 2012/07/12 23:38:06 nit: please reproduce the comment from line 31-32,
Devlin 2012/07/13 15:46:32 Done.
60 class UserScriptListenerTest;
61 }
62
60 // Temporary layering violation to allow existing users of a deprecated 63 // Temporary layering violation to allow existing users of a deprecated
61 // interface. 64 // interface.
62 namespace fileapi { 65 namespace fileapi {
63 class FileSystemDirURLRequestJobTest; 66 class FileSystemDirURLRequestJobTest;
64 class FileSystemURLRequestJobTest; 67 class FileSystemURLRequestJobTest;
65 class FileWriterDelegateTest; 68 class FileWriterDelegateTest;
66 } 69 }
67 70
68 // Temporary layering violation to allow existing users of a deprecated 71 // Temporary layering violation to allow existing users of a deprecated
69 // interface. 72 // interface.
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 // Deprecated interfaces in net::URLRequest. They have been moved to 176 // Deprecated interfaces in net::URLRequest. They have been moved to
174 // URLRequest's private section to prevent new uses. Existing uses are 177 // URLRequest's private section to prevent new uses. Existing uses are
175 // explicitly friended here and should be removed over time. 178 // explicitly friended here and should be removed over time.
176 class NET_EXPORT Deprecated { 179 class NET_EXPORT Deprecated {
177 private: 180 private:
178 // TODO(willchan): Kill off these friend declarations. 181 // TODO(willchan): Kill off these friend declarations.
179 friend class ::AutoUpdateInterceptor; 182 friend class ::AutoUpdateInterceptor;
180 friend class ::ChildProcessSecurityPolicyTest; 183 friend class ::ChildProcessSecurityPolicyTest;
181 friend class ::ComponentUpdateInterceptor; 184 friend class ::ComponentUpdateInterceptor;
182 friend class ::TestAutomationProvider; 185 friend class ::TestAutomationProvider;
183 friend class ::UserScriptListenerTest; 186 friend class extensions::UserScriptListenerTest;
Ryan Sleevi 2012/07/12 23:38:06 please sort this (line 193 to 194)
Devlin 2012/07/13 15:46:32 Done.
184 friend class ::URLRequestAutomationJob; 187 friend class ::URLRequestAutomationJob;
185 friend class TestInterceptor; 188 friend class TestInterceptor;
186 friend class URLRequestFilter; 189 friend class URLRequestFilter;
187 friend class appcache::AppCacheInterceptor; 190 friend class appcache::AppCacheInterceptor;
188 friend class appcache::AppCacheRequestHandlerTest; 191 friend class appcache::AppCacheRequestHandlerTest;
189 friend class appcache::AppCacheURLRequestJobTest; 192 friend class appcache::AppCacheURLRequestJobTest;
190 friend class content::ResourceDispatcherHostTest; 193 friend class content::ResourceDispatcherHostTest;
191 friend class fileapi::FileSystemDirURLRequestJobTest; 194 friend class fileapi::FileSystemDirURLRequestJobTest;
192 friend class fileapi::FileSystemURLRequestJobTest; 195 friend class fileapi::FileSystemURLRequestJobTest;
193 friend class fileapi::FileWriterDelegateTest; 196 friend class fileapi::FileWriterDelegateTest;
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
800 base::TimeTicks creation_time_; 803 base::TimeTicks creation_time_;
801 804
802 scoped_ptr<const base::debug::StackTrace> stack_trace_; 805 scoped_ptr<const base::debug::StackTrace> stack_trace_;
803 806
804 DISALLOW_COPY_AND_ASSIGN(URLRequest); 807 DISALLOW_COPY_AND_ASSIGN(URLRequest);
805 }; 808 };
806 809
807 } // namespace net 810 } // namespace net
808 811
809 #endif // NET_URL_REQUEST_URL_REQUEST_H_ 812 #endif // NET_URL_REQUEST_URL_REQUEST_H_
OLDNEW
« no previous file with comments | « chrome/test/base/testing_profile.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698