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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
| 10 #include <vector> |
10 | 11 |
11 #include "base/callback.h" | 12 #include "base/callback.h" |
12 #include "base/file_path.h" | 13 #include "base/file_path.h" |
13 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
14 #include "base/time.h" | 15 #include "base/time.h" |
15 #include "chrome/common/url_constants.h" | 16 #include "chrome/common/url_constants.h" |
16 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
17 | 18 |
18 class Profile; | 19 class Profile; |
19 | 20 |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 Callback1<const std::vector<LocalStorageInfo>& >::Type* callback); | 127 Callback1<const std::vector<LocalStorageInfo>& >::Type* callback); |
127 virtual void CancelNotification() {} | 128 virtual void CancelNotification() {} |
128 | 129 |
129 private: | 130 private: |
130 virtual ~CannedBrowsingDataLocalStorageHelper() {} | 131 virtual ~CannedBrowsingDataLocalStorageHelper() {} |
131 | 132 |
132 DISALLOW_COPY_AND_ASSIGN(CannedBrowsingDataLocalStorageHelper); | 133 DISALLOW_COPY_AND_ASSIGN(CannedBrowsingDataLocalStorageHelper); |
133 }; | 134 }; |
134 | 135 |
135 #endif // CHROME_BROWSER_BROWSING_DATA_LOCAL_STORAGE_HELPER_H_ | 136 #endif // CHROME_BROWSER_BROWSING_DATA_LOCAL_STORAGE_HELPER_H_ |
OLD | NEW |