forked from nwjs/chromium.src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_common.h
More file actions
41 lines (28 loc) · 1.15 KB
/
test_common.h
File metadata and controls
41 lines (28 loc) · 1.15 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// 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 CONTENT_SHELL_TEST_RUNNER_TEST_COMMON_H_
#define CONTENT_SHELL_TEST_RUNNER_TEST_COMMON_H_
#include <string>
#include "base/strings/string_util.h"
#include "content/shell/test_runner/test_runner_export.h"
#include "third_party/blink/public/platform/web_string.h"
#include "third_party/blink/public/web/web_navigation_policy.h"
#include "v8/include/v8.h"
class GURL;
namespace test_runner {
extern const char* kIllegalString;
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::Isolate* isolate,
v8::Local<v8::String> v8_str);
} // namespace test_runner
#endif // CONTENT_SHELL_TEST_RUNNER_TEST_COMMON_H_