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

Unified Diff: extensions/common/features/behavior_feature.h

Issue 924793003: Cleanup: Convert const char* kFoo to const char kFoo[]. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase again Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/bookmarks/browser/bookmark_node_data.cc ('k') | extensions/common/features/behavior_feature.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/features/behavior_feature.h
diff --git a/extensions/common/features/behavior_feature.h b/extensions/common/features/behavior_feature.h
index cddbe8f31734881ded62f7dccab91f984e180af4..7e9a5f19bb99c40bb911883e941e1eaf2778c9b2 100644
--- a/extensions/common/features/behavior_feature.h
+++ b/extensions/common/features/behavior_feature.h
@@ -19,10 +19,10 @@ namespace extensions {
class BehaviorFeature : public SimpleFeature {
public:
// Constants corresponding to keys in _behavior_features.json.
- static const char* const kServiceWorker;
- static const char* const kWhitelistedForIncognito;
- static const char* const kDoNotSync;
- static const char* const kZoomWithoutBubble;
+ static const char kServiceWorker[];
+ static const char kWhitelistedForIncognito[];
+ static const char kDoNotSync[];
+ static const char kZoomWithoutBubble[];
};
} // namespace extensions
« no previous file with comments | « components/bookmarks/browser/bookmark_node_data.cc ('k') | extensions/common/features/behavior_feature.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698