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

Side by Side Diff: chrome/browser/profiles/profile_impl_io_data.h

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 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/browser/profiles/profile_impl.h ('k') | chrome/browser/profiles/profile_info_cache.h » ('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 (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 CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_
6 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ 6 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/callback.h" 9 #include "base/callback.h"
10 #include "base/containers/hash_tables.h" 10 #include "base/containers/hash_tables.h"
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy; 169 scoped_refptr<storage::SpecialStoragePolicy> special_storage_policy;
170 }; 170 };
171 171
172 ProfileImplIOData(); 172 ProfileImplIOData();
173 virtual ~ProfileImplIOData(); 173 virtual ~ProfileImplIOData();
174 174
175 virtual void InitializeInternal( 175 virtual void InitializeInternal(
176 ProfileParams* profile_params, 176 ProfileParams* profile_params,
177 content::ProtocolHandlerMap* protocol_handlers, 177 content::ProtocolHandlerMap* protocol_handlers,
178 content::URLRequestInterceptorScopedVector request_interceptors) 178 content::URLRequestInterceptorScopedVector request_interceptors)
179 const OVERRIDE; 179 const override;
180 virtual void InitializeExtensionsRequestContext( 180 virtual void InitializeExtensionsRequestContext(
181 ProfileParams* profile_params) const OVERRIDE; 181 ProfileParams* profile_params) const override;
182 virtual net::URLRequestContext* InitializeAppRequestContext( 182 virtual net::URLRequestContext* InitializeAppRequestContext(
183 net::URLRequestContext* main_context, 183 net::URLRequestContext* main_context,
184 const StoragePartitionDescriptor& partition_descriptor, 184 const StoragePartitionDescriptor& partition_descriptor,
185 scoped_ptr<ProtocolHandlerRegistry::JobInterceptorFactory> 185 scoped_ptr<ProtocolHandlerRegistry::JobInterceptorFactory>
186 protocol_handler_interceptor, 186 protocol_handler_interceptor,
187 content::ProtocolHandlerMap* protocol_handlers, 187 content::ProtocolHandlerMap* protocol_handlers,
188 content::URLRequestInterceptorScopedVector request_interceptors) 188 content::URLRequestInterceptorScopedVector request_interceptors)
189 const OVERRIDE; 189 const override;
190 virtual net::URLRequestContext* InitializeMediaRequestContext( 190 virtual net::URLRequestContext* InitializeMediaRequestContext(
191 net::URLRequestContext* original_context, 191 net::URLRequestContext* original_context,
192 const StoragePartitionDescriptor& partition_descriptor) const OVERRIDE; 192 const StoragePartitionDescriptor& partition_descriptor) const override;
193 virtual net::URLRequestContext* 193 virtual net::URLRequestContext*
194 AcquireMediaRequestContext() const OVERRIDE; 194 AcquireMediaRequestContext() const override;
195 virtual net::URLRequestContext* AcquireIsolatedAppRequestContext( 195 virtual net::URLRequestContext* AcquireIsolatedAppRequestContext(
196 net::URLRequestContext* main_context, 196 net::URLRequestContext* main_context,
197 const StoragePartitionDescriptor& partition_descriptor, 197 const StoragePartitionDescriptor& partition_descriptor,
198 scoped_ptr<ProtocolHandlerRegistry::JobInterceptorFactory> 198 scoped_ptr<ProtocolHandlerRegistry::JobInterceptorFactory>
199 protocol_handler_interceptor, 199 protocol_handler_interceptor,
200 content::ProtocolHandlerMap* protocol_handlers, 200 content::ProtocolHandlerMap* protocol_handlers,
201 content::URLRequestInterceptorScopedVector request_interceptors) 201 content::URLRequestInterceptorScopedVector request_interceptors)
202 const OVERRIDE; 202 const override;
203 virtual net::URLRequestContext* 203 virtual net::URLRequestContext*
204 AcquireIsolatedMediaRequestContext( 204 AcquireIsolatedMediaRequestContext(
205 net::URLRequestContext* app_context, 205 net::URLRequestContext* app_context,
206 const StoragePartitionDescriptor& partition_descriptor) 206 const StoragePartitionDescriptor& partition_descriptor)
207 const OVERRIDE; 207 const override;
208 208
209 // Deletes all network related data since |time|. It deletes transport 209 // Deletes all network related data since |time|. It deletes transport
210 // security state since |time| and also deletes HttpServerProperties data. 210 // security state since |time| and also deletes HttpServerProperties data.
211 // Works asynchronously, however if the |completion| callback is non-null, 211 // Works asynchronously, however if the |completion| callback is non-null,
212 // it will be posted on the UI thread once the removal process completes. 212 // it will be posted on the UI thread once the removal process completes.
213 void ClearNetworkingHistorySinceOnIOThread(base::Time time, 213 void ClearNetworkingHistorySinceOnIOThread(base::Time time,
214 const base::Closure& completion); 214 const base::Closure& completion);
215 215
216 // Lazy initialization params. 216 // Lazy initialization params.
217 mutable scoped_ptr<LazyParams> lazy_params_; 217 mutable scoped_ptr<LazyParams> lazy_params_;
(...skipping 19 matching lines...) Expand all
237 237
238 // Parameters needed for isolated apps. 238 // Parameters needed for isolated apps.
239 base::FilePath profile_path_; 239 base::FilePath profile_path_;
240 int app_cache_max_size_; 240 int app_cache_max_size_;
241 int app_media_cache_max_size_; 241 int app_media_cache_max_size_;
242 242
243 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); 243 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData);
244 }; 244 };
245 245
246 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ 246 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile_impl.h ('k') | chrome/browser/profiles/profile_info_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698