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

Unified Diff: ios/chrome/browser/experimental_flags.mm

Issue 2514333003: Componentize Reading List (Closed)
Patch Set: fix Created 4 years, 1 month 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: ios/chrome/browser/experimental_flags.mm
diff --git a/ios/chrome/browser/experimental_flags.mm b/ios/chrome/browser/experimental_flags.mm
index bb892718ab5383383992dffbbb52d346aa9ca442..b1230c476cc916edfcfda98e20c6c188f9b8a842 100644
--- a/ios/chrome/browser/experimental_flags.mm
+++ b/ios/chrome/browser/experimental_flags.mm
@@ -101,15 +101,6 @@ bool IsTabSwitcherEnabled() {
base::CompareCase::INSENSITIVE_ASCII);
}
-bool IsReadingListEnabled() {
- // Check if the experimental flag is forced on or off.
- base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
- if (command_line->HasSwitch(switches::kEnableReadingList)) {
- return true;
- }
- return false;
-}
-
bool IsAllBookmarksEnabled() {
base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
if (command_line->HasSwitch(switches::kEnableAllBookmarksView)) {

Powered by Google App Engine
This is Rietveld 408576698