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

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

Issue 6825038: Create a content::ResourceContext. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix test. Created 9 years, 8 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
« no previous file with comments | « content/browser/resource_context.h ('k') | content/browser/worker_host/worker_message_filter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/browser/resource_context.h"
6
7 #include "base/logging.h"
8 #include "content/browser/browser_thread.h"
9 #include "webkit/database/database_tracker.h"
10
11 namespace content {
12
13 ResourceContext::ResourceContext() {
14 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
15 }
16
17 ResourceContext::~ResourceContext() {}
18
19 webkit_database::DatabaseTracker* ResourceContext::database_tracker() const {
20 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
21 EnsureInitialized();
22 return database_tracker_;
23 }
24
25 void ResourceContext::set_database_tracker(
26 webkit_database::DatabaseTracker* database_tracker) {
27 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
28 database_tracker_ = database_tracker;
29 }
30
31 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/resource_context.h ('k') | content/browser/worker_host/worker_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698