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

Unified Diff: chrome/browser/extensions/activity_log/counting_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/counting_policy.h
diff --git a/chrome/browser/extensions/activity_log/counting_policy.h b/chrome/browser/extensions/activity_log/counting_policy.h
index 3926670166da7df99e2534e4564293f1e7a59647..8c224c684df47e151fb72c1aa83dd3e3dd97ab2b 100644
--- a/chrome/browser/extensions/activity_log/counting_policy.h
+++ b/chrome/browser/extensions/activity_log/counting_policy.h
@@ -59,8 +59,8 @@ class CountingPolicy : public ActivityLogDatabasePolicy {
// The main database table, and the name for a read-only view that
// decompresses string values for easier parsing.
- static const char* kTableName;
- static const char* kReadViewName;
+ static const char kTableName[];
+ static const char kReadViewName[];
protected:
// The ActivityDatabase::Delegate interface. These are always called from

Powered by Google App Engine
This is Rietveld 408576698