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

Side by Side Diff: chrome/browser/content_settings/local_shared_objects_container.h

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_CONTENT_SETTINGS_LOCAL_SHARED_OBJECTS_CONTAINER_H_ 5 #ifndef CHROME_BROWSER_CONTENT_SETTINGS_LOCAL_SHARED_OBJECTS_CONTAINER_H_
6 #define CHROME_BROWSER_CONTENT_SETTINGS_LOCAL_SHARED_OBJECTS_CONTAINER_H_ 6 #define CHROME_BROWSER_CONTENT_SETTINGS_LOCAL_SHARED_OBJECTS_CONTAINER_H_
7 7
8 #include <stddef.h>
9
10 #include "base/macros.h"
8 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
10 #include "components/content_settings/core/browser/local_shared_objects_counter. h" 13 #include "components/content_settings/core/browser/local_shared_objects_counter. h"
11 14
12 class CannedBrowsingDataAppCacheHelper; 15 class CannedBrowsingDataAppCacheHelper;
13 class CannedBrowsingDataChannelIDHelper; 16 class CannedBrowsingDataChannelIDHelper;
14 class CannedBrowsingDataCookieHelper; 17 class CannedBrowsingDataCookieHelper;
15 class CannedBrowsingDataDatabaseHelper; 18 class CannedBrowsingDataDatabaseHelper;
16 class CannedBrowsingDataFileSystemHelper; 19 class CannedBrowsingDataFileSystemHelper;
17 class CannedBrowsingDataIndexedDBHelper; 20 class CannedBrowsingDataIndexedDBHelper;
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 scoped_refptr<CannedBrowsingDataIndexedDBHelper> indexed_dbs_; 78 scoped_refptr<CannedBrowsingDataIndexedDBHelper> indexed_dbs_;
76 scoped_refptr<CannedBrowsingDataLocalStorageHelper> local_storages_; 79 scoped_refptr<CannedBrowsingDataLocalStorageHelper> local_storages_;
77 scoped_refptr<CannedBrowsingDataServiceWorkerHelper> service_workers_; 80 scoped_refptr<CannedBrowsingDataServiceWorkerHelper> service_workers_;
78 scoped_refptr<CannedBrowsingDataCacheStorageHelper> cache_storages_; 81 scoped_refptr<CannedBrowsingDataCacheStorageHelper> cache_storages_;
79 scoped_refptr<CannedBrowsingDataLocalStorageHelper> session_storages_; 82 scoped_refptr<CannedBrowsingDataLocalStorageHelper> session_storages_;
80 83
81 DISALLOW_COPY_AND_ASSIGN(LocalSharedObjectsContainer); 84 DISALLOW_COPY_AND_ASSIGN(LocalSharedObjectsContainer);
82 }; 85 };
83 86
84 #endif // CHROME_BROWSER_CONTENT_SETTINGS_LOCAL_SHARED_OBJECTS_CONTAINER_H_ 87 #endif // CHROME_BROWSER_CONTENT_SETTINGS_LOCAL_SHARED_OBJECTS_CONTAINER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698