OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/shell/app/webkit_test_platform_support.h" | 5 #include "content/shell/app/blink_test_platform_support.h" |
6 | 6 |
7 #include <windows.h> | 7 #include <windows.h> |
8 #include <iostream> | 8 #include <iostream> |
9 #include <list> | 9 #include <list> |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/command_line.h" | 12 #include "base/command_line.h" |
13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
14 #include "base/files/file_util.h" | 14 #include "base/files/file_util.h" |
15 #include "base/logging.h" | 15 #include "base/logging.h" |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 } | 103 } |
104 } | 104 } |
105 | 105 |
106 for (std::list<std::string>::iterator it = errors.begin(); it != errors.end(); | 106 for (std::list<std::string>::iterator it = errors.begin(); it != errors.end(); |
107 ++it) { | 107 ++it) { |
108 std::cerr << *it << "\n"; | 108 std::cerr << *it << "\n"; |
109 } | 109 } |
110 return errors.empty(); | 110 return errors.empty(); |
111 } | 111 } |
112 | 112 |
113 bool WebKitTestPlatformInitialize() { | 113 bool BlinkTestPlatformInitialize() { |
114 return SetupFonts(); | 114 return SetupFonts(); |
115 } | 115 } |
116 | 116 |
117 } // namespace content | 117 } // namespace content |
OLD | NEW |