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

Side by Side Diff: components/dom_distiller/core/dom_distiller_switches.cc

Issue 1419063002: Displaying "simplify page" on print preview by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing stale comments. Created 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/dom_distiller/core/dom_distiller_switches.h" 5 #include "components/dom_distiller/core/dom_distiller_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 const char kEnableDomDistiller[] = "enable-dom-distiller"; 9 const char kEnableDomDistiller[] = "enable-dom-distiller";
10 const char kDisablePrintPreviewSimplify[] = "disable-print-preview-simplify";
10 const char kEnableSyncArticles[] = "enable-sync-articles"; 11 const char kEnableSyncArticles[] = "enable-sync-articles";
11 const char kReaderModeHeuristics[] = "reader-mode-heuristics"; 12 const char kReaderModeHeuristics[] = "reader-mode-heuristics";
12 const char kReaderModeFeedback[] = "reader-mode-feedback"; 13 const char kReaderModeFeedback[] = "reader-mode-feedback";
13 14
14 namespace reader_mode_heuristics { 15 namespace reader_mode_heuristics {
15 const char kAdaBoost[] = "adaboost"; 16 const char kAdaBoost[] = "adaboost";
16 const char kOGArticle[] = "opengraph"; 17 const char kOGArticle[] = "opengraph";
17 const char kAlwaysTrue[] = "alwaystrue"; 18 const char kAlwaysTrue[] = "alwaystrue";
18 const char kNone[] = "none"; 19 const char kNone[] = "none";
19 }; 20 };
20 21
21 namespace reader_mode_feedback { 22 namespace reader_mode_feedback {
22 const char kOn[] = "on"; 23 const char kOn[] = "on";
23 const char kOff[] = "off"; 24 const char kOff[] = "off";
24 }; 25 };
25 26
26 } // namespace switches 27 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698