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

Unified Diff: chrome/browser/extensions/activity_log/fullstream_ui_policy.h

Issue 635573005: Cleanup: Better constify some strings in chrome/browser/{chromeos,extensions}. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase, nit Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/activity_log/fullstream_ui_policy.h
diff --git a/chrome/browser/extensions/activity_log/fullstream_ui_policy.h b/chrome/browser/extensions/activity_log/fullstream_ui_policy.h
index 8a583e49124632b7be147132be88fbf05b2876aa..f468e11abf3da20da5a9154ea9e25a6b9e8e4941 100644
--- a/chrome/browser/extensions/activity_log/fullstream_ui_policy.h
+++ b/chrome/browser/extensions/activity_log/fullstream_ui_policy.h
@@ -53,9 +53,9 @@ class FullStreamUIPolicy : public ActivityLogDatabasePolicy {
void DeleteDatabase() override;
// Database table schema.
- static const char* kTableName;
- static const char* kTableContentFields[];
- static const char* kTableFieldTypes[];
+ static const char kTableName[];
+ static const char* const kTableContentFields[];
+ static const char* const kTableFieldTypes[];
static const int kTableFieldCount;
protected:

Powered by Google App Engine
This is Rietveld 408576698