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

Side by Side Diff: components/content_settings/core/browser/content_settings_client.h

Issue 1546143002: Switch to standard integer types in components/, 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) 2014 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2014 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 COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_CLIENT_H_ 5 #ifndef COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_CLIENT_H_
6 #define COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_CLIENT_H_ 6 #define COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_CLIENT_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/macros.h"
11 #include "base/strings/string16.h" 11 #include "base/strings/string16.h"
12 #include "net/cookies/canonical_cookie.h" 12 #include "net/cookies/canonical_cookie.h"
13 13
14 class GURL; 14 class GURL;
15 class LocalSharedObjectsCounter; 15 class LocalSharedObjectsCounter;
16 16
17 namespace net { 17 namespace net {
18 class CookieOptions; 18 class CookieOptions;
19 } 19 }
20 20
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 virtual const LocalSharedObjectsCounter& local_shared_objects( 61 virtual const LocalSharedObjectsCounter& local_shared_objects(
62 AccessType type) const = 0; 62 AccessType type) const = 0;
63 63
64 private: 64 private:
65 DISALLOW_COPY_AND_ASSIGN(ContentSettingsClient); 65 DISALLOW_COPY_AND_ASSIGN(ContentSettingsClient);
66 }; 66 };
67 67
68 } // namespace content_settings 68 } // namespace content_settings
69 69
70 #endif // COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_CLIENT_H_ 70 #endif // COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698