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/message_loop_helpers.h" | 11 #include "base/sequenced_task_runner_helpers.h" |
12 #include "base/string16.h" | 12 #include "base/string16.h" |
13 #include "content/public/browser/browser_thread.h" | 13 #include "content/public/browser/browser_thread.h" |
14 #include "googleurl/src/gurl.h" | 14 #include "googleurl/src/gurl.h" |
15 | 15 |
16 namespace content { | 16 namespace content { |
17 class DOMStorageContext; | 17 class DOMStorageContext; |
18 class IndexedDBContext; | 18 class IndexedDBContext; |
19 class ResourceContext; | 19 class ResourceContext; |
20 } | 20 } |
21 | 21 |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 scoped_refptr<fileapi::FileSystemContext> file_system_context_; | 101 scoped_refptr<fileapi::FileSystemContext> file_system_context_; |
102 | 102 |
103 // If non-empty, the extension we're deleting is an isolated app, and this | 103 // If non-empty, the extension we're deleting is an isolated app, and this |
104 // is its directory which we should delete. | 104 // is its directory which we should delete. |
105 FilePath isolated_app_path_; | 105 FilePath isolated_app_path_; |
106 | 106 |
107 DISALLOW_COPY_AND_ASSIGN(ExtensionDataDeleter); | 107 DISALLOW_COPY_AND_ASSIGN(ExtensionDataDeleter); |
108 }; | 108 }; |
109 | 109 |
110 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_DATA_DELETER_H_ | 110 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_DATA_DELETER_H_ |
OLD | NEW |