OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "base/file_util.h" | 5 #include "base/file_util.h" |
6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 #include "chrome/common/chrome_switches.h" | 8 #include "chrome/common/chrome_switches.h" |
9 #include "chrome/test/automation/tab_proxy.h" | 9 #include "chrome/test/automation/tab_proxy.h" |
10 #include "chrome/test/ui/ui_test.h" | 10 #include "chrome/test/ui/ui_test.h" |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 RunTest("UrlUtil"); | 128 RunTest("UrlUtil"); |
129 } | 129 } |
130 | 130 |
131 TEST_F(PPAPITest, CharSet) { | 131 TEST_F(PPAPITest, CharSet) { |
132 RunTest("CharSet"); | 132 RunTest("CharSet"); |
133 } | 133 } |
134 | 134 |
135 TEST_F(PPAPITest, Var) { | 135 TEST_F(PPAPITest, Var) { |
136 RunTest("Var"); | 136 RunTest("Var"); |
137 } | 137 } |
138 | |
139 TEST_F(PPAPITest, FileRef) { | |
140 RunTestViaHTTP("FileRef"); | |
141 } | |
142 | |
143 TEST_F(PPAPITest, FileIO) { | |
144 RunTestViaHTTP("FileIO"); | |
145 } | |
146 | |
147 TEST_F(PPAPITest, DirectoryReader) { | |
148 RunTestViaHTTP("DirectoryReader"); | |
149 } | |
OLD | NEW |