summaryrefslogtreecommitdiffstats
path: root/chromium/content/shell/common/shell_switches.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/shell/common/shell_switches.cc')
-rw-r--r--chromium/content/shell/common/shell_switches.cc43
1 files changed, 0 insertions, 43 deletions
diff --git a/chromium/content/shell/common/shell_switches.cc b/chromium/content/shell/common/shell_switches.cc
deleted file mode 100644
index dcd66a5b1ae..00000000000
--- a/chromium/content/shell/common/shell_switches.cc
+++ /dev/null
@@ -1,43 +0,0 @@
-// 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.
-
-#include "content/shell/common/shell_switches.h"
-
-namespace switches {
-
-// Allow access to external pages during layout tests.
-const char kAllowExternalPages[] = "allow-external-pages";
-
-// Check whether all system dependencies for running layout tests are met.
-const char kCheckLayoutTestSysDeps[] = "check-layout-test-sys-deps";
-
-// Tells Content Shell that it's running as a content_browsertest.
-const char kContentBrowserTest[] = "browser-test";
-
-// Makes Content Shell use the given path for its data directory.
-const char kContentShellDataPath[] = "data-path";
-
-// The directory breakpad should store minidumps in.
-const char kCrashDumpsDir[] = "crash-dumps-dir";
-
-// Request pages to be dumped as text once they finished loading.
-const char kDumpRenderTree[] = "dump-render-tree";
-
-// Enable accelerated 2D canvas.
-const char kEnableAccelerated2DCanvas[] = "enable-accelerated-2d-canvas";
-
-// Encode binary layout test results (images, audio) using base64.
-const char kEncodeBinary[] = "encode-binary";
-
-// Exposes the window.internals object to JavaScript for interactive development
-// and debugging of layout tests that rely on it.
-const char kExposeInternalsForTesting[] = "expose-internals-for-testing";
-
-// This makes us disable some web-platform runtime features so that we test
-// content_shell as if it was a stable release. It is only followed when
-// kDumpRenderTree is set. For the features' level, see
-// http://dev.chromium.org/blink/runtime-enabled-features.
-const char kStableReleaseMode[] = "stable-release-mode";
-
-} // namespace switches