| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef COMPONENTS_TEST_RUNNER_TEST_COMMON_H_ | 5 #ifndef CONTENT_SHELL_TEST_RUNNER_TEST_COMMON_H_ |
| 6 #define COMPONENTS_TEST_RUNNER_TEST_COMMON_H_ | 6 #define CONTENT_SHELL_TEST_RUNNER_TEST_COMMON_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/strings/string_util.h" | 10 #include "base/strings/string_util.h" |
| 11 #include "components/test_runner/test_runner_export.h" | 11 #include "content/shell/test_runner/test_runner_export.h" |
| 12 #include "third_party/WebKit/public/platform/WebString.h" | 12 #include "third_party/WebKit/public/platform/WebString.h" |
| 13 #include "third_party/WebKit/public/web/WebNavigationPolicy.h" | 13 #include "third_party/WebKit/public/web/WebNavigationPolicy.h" |
| 14 #include "v8/include/v8.h" | 14 #include "v8/include/v8.h" |
| 15 | 15 |
| 16 class GURL; | 16 class GURL; |
| 17 | 17 |
| 18 namespace test_runner { | 18 namespace test_runner { |
| 19 | 19 |
| 20 inline bool IsASCIIAlpha(char ch) { | 20 inline bool IsASCIIAlpha(char ch) { |
| 21 return base::IsAsciiLower(ch | 0x20); | 21 return base::IsAsciiLower(ch | 0x20); |
| 22 } | 22 } |
| 23 | 23 |
| 24 inline bool IsNotASCIIAlpha(char ch) { | 24 inline bool IsNotASCIIAlpha(char ch) { |
| 25 return !IsASCIIAlpha(ch); | 25 return !IsASCIIAlpha(ch); |
| 26 } | 26 } |
| 27 | 27 |
| 28 TEST_RUNNER_EXPORT std::string NormalizeLayoutTestURL(const std::string& url); | 28 TEST_RUNNER_EXPORT std::string NormalizeLayoutTestURL(const std::string& url); |
| 29 | 29 |
| 30 std::string URLDescription(const GURL& url); | 30 std::string URLDescription(const GURL& url); |
| 31 const char* WebNavigationPolicyToString( | 31 const char* WebNavigationPolicyToString( |
| 32 const blink::WebNavigationPolicy& policy); | 32 const blink::WebNavigationPolicy& policy); |
| 33 | 33 |
| 34 blink::WebString V8StringToWebString(v8::Local<v8::String> v8_str); | 34 blink::WebString V8StringToWebString(v8::Local<v8::String> v8_str); |
| 35 | 35 |
| 36 } // namespace test_runner | 36 } // namespace test_runner |
| 37 | 37 |
| 38 #endif // COMPONENTS_TEST_RUNNER_TEST_COMMON_H_ | 38 #endif // CONTENT_SHELL_TEST_RUNNER_TEST_COMMON_H_ |
| OLD | NEW |