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

Side by Side Diff: extensions/common/features/json_feature_provider_source.h

Issue 1543053002: Switch to standard integer types in extensions/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-extensions-browser
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
« no previous file with comments | « extensions/common/features/feature_util.h ('k') | extensions/common/features/simple_feature.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 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 EXTENSIONS_COMMON_FEATURES_JSON_FEATURE_PROVIDER_SOURCE_H_ 5 #ifndef EXTENSIONS_COMMON_FEATURES_JSON_FEATURE_PROVIDER_SOURCE_H_
6 #define EXTENSIONS_COMMON_FEATURES_JSON_FEATURE_PROVIDER_SOURCE_H_ 6 #define EXTENSIONS_COMMON_FEATURES_JSON_FEATURE_PROVIDER_SOURCE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/macros.h"
10 #include "base/values.h" 11 #include "base/values.h"
11 12
12 namespace extensions { 13 namespace extensions {
13 14
14 // A JSONFeatureProviderSource loads JSON dictionary files that 15 // A JSONFeatureProviderSource loads JSON dictionary files that
15 // define features. 16 // define features.
16 class JSONFeatureProviderSource { 17 class JSONFeatureProviderSource {
17 public: 18 public:
18 explicit JSONFeatureProviderSource(const std::string& name); 19 explicit JSONFeatureProviderSource(const std::string& name);
19 ~JSONFeatureProviderSource(); 20 ~JSONFeatureProviderSource();
(...skipping 10 matching lines...) Expand all
30 const std::string name_; 31 const std::string name_;
31 32
32 base::DictionaryValue dictionary_; 33 base::DictionaryValue dictionary_;
33 34
34 DISALLOW_COPY_AND_ASSIGN(JSONFeatureProviderSource); 35 DISALLOW_COPY_AND_ASSIGN(JSONFeatureProviderSource);
35 }; 36 };
36 37
37 } // namespace extensions 38 } // namespace extensions
38 39
39 #endif // EXTENSIONS_COMMON_FEATURES_JSON_FEATURE_PROVIDER_SOURCE_H_ 40 #endif // EXTENSIONS_COMMON_FEATURES_JSON_FEATURE_PROVIDER_SOURCE_H_
OLDNEW
« no previous file with comments | « extensions/common/features/feature_util.h ('k') | extensions/common/features/simple_feature.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698