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

Side by Side Diff: content/browser/storage_partition_impl.cc

Issue 15990007: Move dom_storage to new locations. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 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 #include "content/browser/storage_partition_impl.h" 5 #include "content/browser/storage_partition_impl.h"
6 6
7 #include "base/utf_string_conversions.h" 7 #include "base/utf_string_conversions.h"
8 #include "content/browser/fileapi/browser_file_system_helper.h" 8 #include "content/browser/fileapi/browser_file_system_helper.h"
9 #include "content/browser/gpu/shader_disk_cache.h" 9 #include "content/browser/gpu/shader_disk_cache.h"
10 #include "content/public/browser/browser_context.h" 10 #include "content/public/browser/browser_context.h"
11 #include "content/public/browser/browser_thread.h" 11 #include "content/public/browser/browser_thread.h"
12 #include "content/public/browser/dom_storage_context.h" 12 #include "content/public/browser/dom_storage_context.h"
13 #include "content/public/browser/indexed_db_context.h" 13 #include "content/public/browser/indexed_db_context.h"
14 #include "net/base/completion_callback.h" 14 #include "net/base/completion_callback.h"
15 #include "net/base/net_errors.h" 15 #include "net/base/net_errors.h"
16 #include "net/cookies/cookie_monster.h" 16 #include "net/cookies/cookie_monster.h"
17 #include "net/url_request/url_request_context.h" 17 #include "net/url_request/url_request_context.h"
18 #include "net/url_request/url_request_context_getter.h" 18 #include "net/url_request/url_request_context_getter.h"
19 #include "webkit/browser/database/database_tracker.h" 19 #include "webkit/browser/database/database_tracker.h"
20 #include "webkit/browser/quota/quota_manager.h" 20 #include "webkit/browser/quota/quota_manager.h"
21 #include "webkit/dom_storage/dom_storage_types.h" 21 #include "webkit/common/dom_storage/dom_storage_types.h"
22 22
23 namespace content { 23 namespace content {
24 24
25 namespace { 25 namespace {
26 26
27 void DoNothingStatusCallback(quota::QuotaStatusCode status) { 27 void DoNothingStatusCallback(quota::QuotaStatusCode status) {
28 // Do nothing. 28 // Do nothing.
29 } 29 }
30 30
31 void ClearQuotaManagedOriginsOnIOThread( 31 void ClearQuotaManagedOriginsOnIOThread(
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 net::URLRequestContextGetter* url_request_context) { 335 net::URLRequestContextGetter* url_request_context) {
336 url_request_context_ = url_request_context; 336 url_request_context_ = url_request_context;
337 } 337 }
338 338
339 void StoragePartitionImpl::SetMediaURLRequestContext( 339 void StoragePartitionImpl::SetMediaURLRequestContext(
340 net::URLRequestContextGetter* media_url_request_context) { 340 net::URLRequestContextGetter* media_url_request_context) {
341 media_url_request_context_ = media_url_request_context; 341 media_url_request_context_ = media_url_request_context;
342 } 342 }
343 343
344 } // namespace content 344 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/test_render_view_host.cc ('k') | content/common/dom_storage_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698