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

Unified Diff: chrome/browser/sync/profile_sync_service.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: Created 5 years, 10 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/sync/profile_sync_service.h
diff --git a/chrome/browser/sync/profile_sync_service.h b/chrome/browser/sync/profile_sync_service.h
index a16ab94d4ecb8e2efe85cd3846190d53477e54b2..d6ba0c781d61395165ca51662040151f822d7df3 100644
--- a/chrome/browser/sync/profile_sync_service.h
+++ b/chrome/browser/sync/profile_sync_service.h
@@ -265,9 +265,9 @@ class ProfileSyncService : public ProfileSyncServiceBase,
};
// Default sync server URL.
- static const char* kSyncServerUrl;
+ static const char kSyncServerUrl[];
// Sync server URL for dev channel users
- static const char* kDevServerUrl;
+ static const char kDevServerUrl[];
// Takes ownership of |factory| and |signin_wrapper|.
ProfileSyncService(

Powered by Google App Engine
This is Rietveld 408576698