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

Unified Diff: components/arc/arc_pref_names.cc

Issue 1412863004: arc-bridge: Add the ARC Bridge Service (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@master
Patch Set: Added Pref names and separated file I/O to the correct thread Created 5 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: components/arc/arc_pref_names.cc
diff --git a/components/proxy_config/proxy_config_pref_names.cc b/components/arc/arc_pref_names.cc
similarity index 52%
copy from components/proxy_config/proxy_config_pref_names.cc
copy to components/arc/arc_pref_names.cc
index 9e65ad6e11e5b7777a727a209f22b71d6416f0d5..c32d0a80904477f25cce5e5f444ff9d77e63f4ef 100644
--- a/components/proxy_config/proxy_config_pref_names.cc
+++ b/components/arc/arc_pref_names.cc
@@ -2,14 +2,14 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "components/proxy_config/proxy_config_pref_names.h"
+#include "components/arc/arc_pref_names.h"
-namespace proxy_config {
+namespace arc {
namespace prefs {
-// Preference to store proxy settings.
-const char kProxy[] = "proxy";
+// Whether using ARC is enabled.
satorux1 2015/10/28 05:45:23 maybe drop 'using'?
Luis Héctor Chávez 2015/10/28 17:19:14 Done.
+const char kArcEnabled[] =
+ "arc.enabled";
satorux1 2015/10/28 05:45:23 make it one line?
Luis Héctor Chávez 2015/10/28 17:19:15 Hmm I thought I had seen some other pref_names.cc
} // namespace prefs
-} // namespace proxy_config
-
+} // namespace arc

Powered by Google App Engine
This is Rietveld 408576698