| 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 | 
|  | 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 | 
| OLD | NEW | 
|---|