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

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

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 | « extensions/common/features/behavior_feature.h ('k') | extensions/common/message_bundle.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/features/behavior_feature.cc
diff --git a/extensions/common/features/behavior_feature.cc b/extensions/common/features/behavior_feature.cc
index 25dddbc56f0c7db5e20eeb296b64a92ed3e64869..b43dc2e85e1443e2078a53dd69ba01bc767f5bd7 100644
--- a/extensions/common/features/behavior_feature.cc
+++ b/extensions/common/features/behavior_feature.cc
@@ -6,13 +6,13 @@
namespace extensions {
-const char* const BehaviorFeature::kServiceWorker = "service_worker";
+const char BehaviorFeature::kServiceWorker[] = "service_worker";
-const char* const BehaviorFeature::kWhitelistedForIncognito =
+const char BehaviorFeature::kWhitelistedForIncognito[] =
"whitelisted_for_incognito";
-const char* const BehaviorFeature::kDoNotSync = "do_not_sync";
+const char BehaviorFeature::kDoNotSync[] = "do_not_sync";
-const char* const BehaviorFeature::kZoomWithoutBubble = "zoom_without_bubble";
+const char BehaviorFeature::kZoomWithoutBubble[] = "zoom_without_bubble";
} // namespace extensions
« no previous file with comments | « extensions/common/features/behavior_feature.h ('k') | extensions/common/message_bundle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698