Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(892)

Side by Side Diff: chrome/browser/browsing_data_local_storage_helper.h

Issue 2878081: Clean up inclusion of <map>, <set>, <vector> in chrome/browser/*.h. (Closed)
Patch Set: Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698