| 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 CHROME_BROWSER_EXTENSIONS_EXTENSION_DATA_DELETER_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_DATA_DELETER_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_DATA_DELETER_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_DATA_DELETER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/file_path.h" | 9 #include "base/file_path.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/string16.h" | 11 #include "base/string16.h" |
| 12 #include "content/browser/browser_thread.h" | 12 #include "content/public/browser/browser_thread.h" |
| 13 #include "googleurl/src/gurl.h" | 13 #include "googleurl/src/gurl.h" |
| 14 | 14 |
| 15 namespace webkit_database { | 15 namespace webkit_database { |
| 16 class DatabaseTracker; | 16 class DatabaseTracker; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace fileapi { | 19 namespace fileapi { |
| 20 class FileSystemContext; | 20 class FileSystemContext; |
| 21 } | 21 } |
| 22 | 22 |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 scoped_refptr<ChromeAppCacheService> appcache_service_; | 108 scoped_refptr<ChromeAppCacheService> appcache_service_; |
| 109 | 109 |
| 110 // If non-empty, the extension we're deleting is an isolated app, and this | 110 // If non-empty, the extension we're deleting is an isolated app, and this |
| 111 // is its directory which we should delete. | 111 // is its directory which we should delete. |
| 112 FilePath isolated_app_path_; | 112 FilePath isolated_app_path_; |
| 113 | 113 |
| 114 DISALLOW_COPY_AND_ASSIGN(ExtensionDataDeleter); | 114 DISALLOW_COPY_AND_ASSIGN(ExtensionDataDeleter); |
| 115 }; | 115 }; |
| 116 | 116 |
| 117 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_DATA_DELETER_H_ | 117 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_DATA_DELETER_H_ |
| OLD | NEW |