summaryrefslogtreecommitdiff
path: root/chromium/components/dom_distiller/core/dom_distiller_switches.cc
blob: 70a90f1d0d39a5ac2585b3af5b2e512924c9820e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright 2015 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.

#include "components/dom_distiller/core/dom_distiller_switches.h"

namespace switches {

const char kEnableDistillabilityService[] = "enable-distillability-service";
const char kEnableDomDistiller[] = "enable-dom-distiller";
const char kEnableSyncArticles[] = "enable-sync-articles";
const char kReaderModeHeuristics[] = "reader-mode-heuristics";
const char kReaderModeFeedback[] = "reader-mode-feedback";

namespace reader_mode_heuristics {
const char kAdaBoost[] = "adaboost";
const char kOGArticle[] = "opengraph";
const char kAlwaysTrue[] = "alwaystrue";
const char kNone[] = "none";
};

namespace reader_mode_feedback {
const char kOn[] = "on";
const char kOff[] = "off";
};

}  // namespace switches