OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_BROWSING_DATA_LOCAL_STORAGE_HELPER_H_ | 5 #ifndef CHROME_BROWSER_BROWSING_DATA_LOCAL_STORAGE_HELPER_H_ |
6 #define CHROME_BROWSER_BROWSING_DATA_LOCAL_STORAGE_HELPER_H_ | 6 #define CHROME_BROWSER_BROWSING_DATA_LOCAL_STORAGE_HELPER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
12 #include "base/scoped_ptr.h" | 12 #include "base/scoped_ptr.h" |
13 #include "base/time.h" | 13 #include "base/time.h" |
| 14 #include "chrome/common/url_constants.h" |
14 | 15 |
15 class Profile; | 16 class Profile; |
16 | 17 |
17 // This class fetches local storage information in the WebKit thread, and | 18 // This class fetches local storage information in the WebKit thread, and |
18 // notifies the UI thread upon completion. | 19 // notifies the UI thread upon completion. |
19 // A client of this class need to call StartFetching from the UI thread to | 20 // A client of this class need to call StartFetching from the UI thread to |
20 // initiate the flow, and it'll be notified by the callback in its UI | 21 // initiate the flow, and it'll be notified by the callback in its UI |
21 // thread at some later point. | 22 // thread at some later point. |
22 // The client must call CancelNotification() if it's destroyed before the | 23 // The client must call CancelNotification() if it's destroyed before the |
23 // callback is notified. | 24 // callback is notified. |
(...skipping 15 matching lines...) Expand all Loading... |
39 : protocol(protocol), | 40 : protocol(protocol), |
40 host(host), | 41 host(host), |
41 port(port), | 42 port(port), |
42 database_identifier(database_identifier), | 43 database_identifier(database_identifier), |
43 origin(origin), | 44 origin(origin), |
44 file_path(file_path), | 45 file_path(file_path), |
45 size(size), | 46 size(size), |
46 last_modified(last_modified) { | 47 last_modified(last_modified) { |
47 } | 48 } |
48 | 49 |
| 50 bool IsExtensionSchemeData() { |
| 51 return protocol == chrome::kExtensionScheme; |
| 52 } |
| 53 |
| 54 bool IsFileSchemeData() { |
| 55 return protocol == chrome::kFileScheme; |
| 56 } |
| 57 |
49 std::string protocol; | 58 std::string protocol; |
50 std::string host; | 59 std::string host; |
51 unsigned short port; | 60 unsigned short port; |
52 std::string database_identifier; | 61 std::string database_identifier; |
53 std::string origin; | 62 std::string origin; |
54 FilePath file_path; | 63 FilePath file_path; |
55 int64 size; | 64 int64 size; |
56 base::Time last_modified; | 65 base::Time last_modified; |
57 }; | 66 }; |
58 | 67 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 // after we notified the callback in the UI thread. | 100 // after we notified the callback in the UI thread. |
92 // This only mutates on the UI thread. | 101 // This only mutates on the UI thread. |
93 bool is_fetching_; | 102 bool is_fetching_; |
94 // This only mutates in the WEBKIT thread. | 103 // This only mutates in the WEBKIT thread. |
95 std::vector<LocalStorageInfo> local_storage_info_; | 104 std::vector<LocalStorageInfo> local_storage_info_; |
96 | 105 |
97 DISALLOW_COPY_AND_ASSIGN(BrowsingDataLocalStorageHelper); | 106 DISALLOW_COPY_AND_ASSIGN(BrowsingDataLocalStorageHelper); |
98 }; | 107 }; |
99 | 108 |
100 #endif // CHROME_BROWSER_BROWSING_DATA_LOCAL_STORAGE_HELPER_H_ | 109 #endif // CHROME_BROWSER_BROWSING_DATA_LOCAL_STORAGE_HELPER_H_ |
OLD | NEW |