Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 ResourceContext::~ResourceContext() {} | |
|
jam
2011/04/13 16:43:06
nit: missing blank line
| |
| 17 | |
| 18 webkit_database::DatabaseTracker* ResourceContext::database_tracker() const { | |
| 19 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | |
| 20 EnsureInitialized(); | |
| 21 return database_tracker_; | |
| 22 } | |
| 23 | |
| 24 void ResourceContext::set_database_tracker( | |
| 25 webkit_database::DatabaseTracker* database_tracker) { | |
| 26 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | |
| 27 database_tracker_ = database_tracker; | |
| 28 } | |
| 29 | |
| 30 } // namespace content | |
| OLD | NEW |