| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 CONTENT_BROWSER_CHROME_BLOB_STORAGE_CONTEXT_H_ | 5 #ifndef CONTENT_BROWSER_CHROME_BLOB_STORAGE_CONTEXT_H_ |
| 6 #define CONTENT_BROWSER_CHROME_BLOB_STORAGE_CONTEXT_H_ | 6 #define CONTENT_BROWSER_CHROME_BLOB_STORAGE_CONTEXT_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/message_loop_helpers.h" |
| 11 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
| 12 #include "content/public/browser/browser_thread.h" | 13 #include "content/public/browser/browser_thread.h" |
| 13 | 14 |
| 14 namespace webkit_blob { | 15 namespace webkit_blob { |
| 15 class BlobStorageController; | 16 class BlobStorageController; |
| 16 } | 17 } |
| 17 | 18 |
| 18 // A context class that keeps track of BlobStorageController used by the chrome. | 19 // A context class that keeps track of BlobStorageController used by the chrome. |
| 19 // There is an instance associated with each BrowserContext. There could be | 20 // There is an instance associated with each BrowserContext. There could be |
| 20 // multiple URLRequestContexts in the same browser context that refers to the | 21 // multiple URLRequestContexts in the same browser context that refers to the |
| (...skipping 10 matching lines...) Expand all Loading... |
| 31 void InitializeOnIOThread(); | 32 void InitializeOnIOThread(); |
| 32 | 33 |
| 33 webkit_blob::BlobStorageController* controller() const { | 34 webkit_blob::BlobStorageController* controller() const { |
| 34 return controller_.get(); | 35 return controller_.get(); |
| 35 } | 36 } |
| 36 | 37 |
| 37 private: | 38 private: |
| 38 friend class base::RefCountedThreadSafe< | 39 friend class base::RefCountedThreadSafe< |
| 39 ChromeBlobStorageContext, content::BrowserThread::DeleteOnIOThread>; | 40 ChromeBlobStorageContext, content::BrowserThread::DeleteOnIOThread>; |
| 40 friend class content::BrowserThread; | 41 friend class content::BrowserThread; |
| 41 friend class DeleteTask<ChromeBlobStorageContext>; | 42 friend class base::DeleteHelper<ChromeBlobStorageContext>; |
| 42 | 43 |
| 43 virtual ~ChromeBlobStorageContext(); | 44 virtual ~ChromeBlobStorageContext(); |
| 44 | 45 |
| 45 scoped_ptr<webkit_blob::BlobStorageController> controller_; | 46 scoped_ptr<webkit_blob::BlobStorageController> controller_; |
| 46 }; | 47 }; |
| 47 | 48 |
| 48 #endif // CONTENT_BROWSER_CHROME_BLOB_STORAGE_CONTEXT_H_ | 49 #endif // CONTENT_BROWSER_CHROME_BLOB_STORAGE_CONTEXT_H_ |
| OLD | NEW |