| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "v8_proxy.h" | 5 #include "v8_proxy.h" |
| 6 #undef LOG | 6 #undef LOG |
| 7 | 7 |
| 8 #include "webkit/tools/test_shell/test_shell.h" | 8 #include "webkit/tools/test_shell/test_shell.h" |
| 9 | 9 |
| 10 #include "base/base_paths.h" | 10 #include "base/base_paths.h" |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 #include "webkit/glue/webkit_glue.h" | 36 #include "webkit/glue/webkit_glue.h" |
| 37 #include "webkit/glue/webpreferences.h" | 37 #include "webkit/glue/webpreferences.h" |
| 38 #include "webkit/glue/webresponse.h" | 38 #include "webkit/glue/webresponse.h" |
| 39 #include "webkit/glue/weburlrequest.h" | 39 #include "webkit/glue/weburlrequest.h" |
| 40 #include "webkit/glue/webview.h" | 40 #include "webkit/glue/webview.h" |
| 41 #include "webkit/glue/webwidget.h" | 41 #include "webkit/glue/webwidget.h" |
| 42 #include "webkit/tools/test_shell/simple_resource_loader_bridge.h" | 42 #include "webkit/tools/test_shell/simple_resource_loader_bridge.h" |
| 43 #include "webkit/tools/test_shell/test_navigation_controller.h" | 43 #include "webkit/tools/test_shell/test_navigation_controller.h" |
| 44 #include "webkit/tools/test_shell/test_shell_switches.h" | 44 #include "webkit/tools/test_shell/test_shell_switches.h" |
| 45 | 45 |
| 46 #include "SkBitmap.h" | 46 #include "third_party/skia/include/core/SkBitmap.h" |
| 47 | 47 |
| 48 namespace { | 48 namespace { |
| 49 | 49 |
| 50 // Default timeout in ms for file page loads when in layout test mode. | 50 // Default timeout in ms for file page loads when in layout test mode. |
| 51 const int kDefaultFileTestTimeoutMillisecs = 10 * 1000; | 51 const int kDefaultFileTestTimeoutMillisecs = 10 * 1000; |
| 52 | 52 |
| 53 // Content area size for newly created windows. | 53 // Content area size for newly created windows. |
| 54 const int kTestWindowWidth = 800; | 54 const int kTestWindowWidth = 800; |
| 55 const int kTestWindowHeight = 600; | 55 const int kTestWindowHeight = 600; |
| 56 | 56 |
| (...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 649 } | 649 } |
| 650 #endif // OS_WIN | 650 #endif // OS_WIN |
| 651 return false; | 651 return false; |
| 652 } | 652 } |
| 653 | 653 |
| 654 std::wstring GetWebKitLocale() { | 654 std::wstring GetWebKitLocale() { |
| 655 return L"en-US"; | 655 return L"en-US"; |
| 656 } | 656 } |
| 657 | 657 |
| 658 } // namespace webkit_glue | 658 } // namespace webkit_glue |
| OLD | NEW |