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

Unified Diff: components/test_runner/test_common.h

Issue 2707183003: Move //components/test_runner back into //content/shell (Closed)
Patch Set: Trim DEPS Created 3 years, 10 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
Index: components/test_runner/test_common.h
diff --git a/components/test_runner/test_common.h b/components/test_runner/test_common.h
deleted file mode 100644
index b356c7f24669ba9b0d5561e088769a17d60d99f4..0000000000000000000000000000000000000000
--- a/components/test_runner/test_common.h
+++ /dev/null
@@ -1,38 +0,0 @@
-// Copyright 2014 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.
-
-#ifndef COMPONENTS_TEST_RUNNER_TEST_COMMON_H_
-#define COMPONENTS_TEST_RUNNER_TEST_COMMON_H_
-
-#include <string>
-
-#include "base/strings/string_util.h"
-#include "components/test_runner/test_runner_export.h"
-#include "third_party/WebKit/public/platform/WebString.h"
-#include "third_party/WebKit/public/web/WebNavigationPolicy.h"
-#include "v8/include/v8.h"
-
-class GURL;
-
-namespace test_runner {
-
-inline bool IsASCIIAlpha(char ch) {
- return base::IsAsciiLower(ch | 0x20);
-}
-
-inline bool IsNotASCIIAlpha(char ch) {
- return !IsASCIIAlpha(ch);
-}
-
-TEST_RUNNER_EXPORT std::string NormalizeLayoutTestURL(const std::string& url);
-
-std::string URLDescription(const GURL& url);
-const char* WebNavigationPolicyToString(
- const blink::WebNavigationPolicy& policy);
-
-blink::WebString V8StringToWebString(v8::Local<v8::String> v8_str);
-
-} // namespace test_runner
-
-#endif // COMPONENTS_TEST_RUNNER_TEST_COMMON_H_

Powered by Google App Engine
This is Rietveld 408576698