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

Unified Diff: chrome/browser/about_flags_android.cc

Issue 10698095: Add dummy implementation of about_flags for Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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
« no previous file with comments | « no previous file | chrome/browser/chrome_browser_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/about_flags_android.cc
diff --git a/chrome/browser/about_flags_android.cc b/chrome/browser/about_flags_android.cc
new file mode 100644
index 0000000000000000000000000000000000000000..f12481669a95cbd131ae4bb376468e8eb28ed797
--- /dev/null
+++ b/chrome/browser/about_flags_android.cc
@@ -0,0 +1,29 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Minimalist dummy implementation of about_flags.h for Android.
+
+#include "chrome/browser/about_flags.h"
+
+#include "base/logging.h"
+
+namespace about_flags {
+
+void ConvertFlagsToSwitches(PrefService*, CommandLine*) {
+ NOTIMPLEMENTED();
Nico 2012/07/04 11:39:32 Do you intend to implement these eventually? If no
Philippe 2012/07/04 11:45:38 Indeed. I don't think we plan to implement that ev
+}
+
+void SetExperimentEnabled(PrefService*, const std::string&, bool) {
+ NOTIMPLEMENTED();
+}
+
+void RemoveFlagsSwitches(std::map<std::string, CommandLine::StringType>*) {
+ NOTIMPLEMENTED();
+}
+
+void RecordUMAStatistics(const PrefService*) {
+ NOTIMPLEMENTED();
+}
+
+} // namespace about_flags
« no previous file with comments | « no previous file | chrome/browser/chrome_browser_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698