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

Unified Diff: chrome/browser/ui/ash/chrome_launcher_prefs.cc

Issue 1313533003: Fix some extern usage in .cc files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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/ui/ash/chrome_launcher_prefs.cc
diff --git a/chrome/browser/ui/ash/chrome_launcher_prefs.cc b/chrome/browser/ui/ash/chrome_launcher_prefs.cc
index ed925e738a5466ce887aea21a949e14660742c4c..24bd3932a187843cae58b01c7e7fb4d3e86608b9 100644
--- a/chrome/browser/ui/ash/chrome_launcher_prefs.cc
+++ b/chrome/browser/ui/ash/chrome_launcher_prefs.cc
@@ -38,10 +38,10 @@ const char kPinnedAppsPrefAppIDPath[] = "id";
const char kShelfAutoHideBehaviorAlways[] = "Always";
const char kShelfAutoHideBehaviorNever[] = "Never";
-extern const char kShelfAlignmentBottom[] = "Bottom";
-extern const char kShelfAlignmentLeft[] = "Left";
-extern const char kShelfAlignmentRight[] = "Right";
-extern const char kShelfAlignmentTop[] = "Top";
+const char kShelfAlignmentBottom[] = "Bottom";
+const char kShelfAlignmentLeft[] = "Left";
+const char kShelfAlignmentRight[] = "Right";
+const char kShelfAlignmentTop[] = "Top";
void RegisterChromeLauncherUserPrefs(
user_prefs::PrefRegistrySyncable* registry) {

Powered by Google App Engine
This is Rietveld 408576698