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 #include "content/test/ppapi/ppapi_test.h" | 5 #include "content/test/ppapi/ppapi_test.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/file_util.h" | |
9 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/files/file_util.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
11 #include "base/strings/string_util.h" | 11 #include "base/strings/string_util.h" |
12 #include "base/strings/stringprintf.h" | 12 #include "base/strings/stringprintf.h" |
13 #include "content/public/browser/web_contents.h" | 13 #include "content/public/browser/web_contents.h" |
14 #include "content/public/common/content_switches.h" | 14 #include "content/public/common/content_switches.h" |
15 #include "content/shell/browser/shell.h" | 15 #include "content/shell/browser/shell.h" |
16 #include "net/base/filename_util.h" | 16 #include "net/base/filename_util.h" |
17 #include "ppapi/shared_impl/ppapi_switches.h" | 17 #include "ppapi/shared_impl/ppapi_switches.h" |
18 #include "ppapi/shared_impl/test_harness_utils.h" | 18 #include "ppapi/shared_impl/test_harness_utils.h" |
19 | 19 |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 std::string PPAPITest::BuildQuery(const std::string& base, | 123 std::string PPAPITest::BuildQuery(const std::string& base, |
124 const std::string& test_case){ | 124 const std::string& test_case){ |
125 return base::StringPrintf("%stestcase=%s", base.c_str(), test_case.c_str()); | 125 return base::StringPrintf("%stestcase=%s", base.c_str(), test_case.c_str()); |
126 } | 126 } |
127 | 127 |
128 OutOfProcessPPAPITest::OutOfProcessPPAPITest() { | 128 OutOfProcessPPAPITest::OutOfProcessPPAPITest() { |
129 in_process_ = false; | 129 in_process_ = false; |
130 } | 130 } |
131 | 131 |
132 } // namespace content | 132 } // namespace content |
OLD | NEW |