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

Side by Side Diff: components/content_settings/core/browser/content_settings_origin_identifier_value_map.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) 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 COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_ORIGIN_IDENTIF IER_VALUE_MAP_H_ 5 #ifndef COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_ORIGIN_IDENTIF IER_VALUE_MAP_H_
6 #define COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_ORIGIN_IDENTIF IER_VALUE_MAP_H_ 6 #define COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_ORIGIN_IDENTIF IER_VALUE_MAP_H_
7 7
8 #include <stddef.h>
9
8 #include <map> 10 #include <map>
9 #include <string> 11 #include <string>
10 12
13 #include "base/macros.h"
11 #include "base/memory/linked_ptr.h" 14 #include "base/memory/linked_ptr.h"
12 #include "base/memory/scoped_ptr.h" 15 #include "base/memory/scoped_ptr.h"
13 #include "components/content_settings/core/common/content_settings.h" 16 #include "components/content_settings/core/common/content_settings.h"
14 17
15 class GURL; 18 class GURL;
16 19
17 namespace base { 20 namespace base {
18 class Lock; 21 class Lock;
19 class Value; 22 class Value;
20 } 23 }
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 120
118 private: 121 private:
119 EntryMap entries_; 122 EntryMap entries_;
120 123
121 DISALLOW_COPY_AND_ASSIGN(OriginIdentifierValueMap); 124 DISALLOW_COPY_AND_ASSIGN(OriginIdentifierValueMap);
122 }; 125 };
123 126
124 } // namespace content_settings 127 } // namespace content_settings
125 128
126 #endif // COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_ORIGIN_IDEN TIFIER_VALUE_MAP_H_ 129 #endif // COMPONENTS_CONTENT_SETTINGS_CORE_BROWSER_CONTENT_SETTINGS_ORIGIN_IDEN TIFIER_VALUE_MAP_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698