| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "webkit/tools/test_shell/test_shell.h" | 5 #include "webkit/tools/test_shell/test_shell.h" |
| 6 | 6 |
| 7 #include <errno.h> | 7 #include <errno.h> |
| 8 #include <fcntl.h> | 8 #include <fcntl.h> |
| 9 #include <fontconfig/fontconfig.h> | 9 #include <fontconfig/fontconfig.h> |
| 10 #include <gtk/gtk.h> | 10 #include <gtk/gtk.h> |
| 11 #include <signal.h> | 11 #include <signal.h> |
| 12 #include <unistd.h> | 12 #include <unistd.h> |
| 13 | 13 |
| 14 #include "base/file_util.h" | 14 #include "base/file_util.h" |
| 15 #include "base/files/file_path.h" | 15 #include "base/files/file_path.h" |
| 16 #include "base/message_loop.h" | 16 #include "base/message_loop.h" |
| 17 #include "base/path_service.h" | 17 #include "base/path_service.h" |
| 18 #include "base/string16.h" | 18 #include "base/string16.h" |
| 19 #include "base/string_piece.h" | 19 #include "base/strings/string_piece.h" |
| 20 #include "base/utf_string_conversions.h" | 20 #include "base/utf_string_conversions.h" |
| 21 #include "grit/test_shell_resources.h" | 21 #include "grit/test_shell_resources.h" |
| 22 #include "grit/webkit_resources.h" | 22 #include "grit/webkit_resources.h" |
| 23 #include "net/base/mime_util.h" | 23 #include "net/base/mime_util.h" |
| 24 #include "net/base/net_util.h" | 24 #include "net/base/net_util.h" |
| 25 #include "third_party/WebKit/Source/Platform/chromium/public/WebPoint.h" | 25 #include "third_party/WebKit/Source/Platform/chromium/public/WebPoint.h" |
| 26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" | 26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" |
| 27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" | 27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h" |
| 28 #include "ui/base/gtk/gtk_compat.h" | 28 #include "ui/base/gtk/gtk_compat.h" |
| 29 #include "ui/base/layout.h" | 29 #include "ui/base/layout.h" |
| (...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 576 case IDR_BROKENIMAGE: | 576 case IDR_BROKENIMAGE: |
| 577 resource_id = IDR_BROKENIMAGE_TESTSHELL; | 577 resource_id = IDR_BROKENIMAGE_TESTSHELL; |
| 578 break; | 578 break; |
| 579 case IDR_TEXTAREA_RESIZER: | 579 case IDR_TEXTAREA_RESIZER: |
| 580 resource_id = IDR_TEXTAREA_RESIZER_TESTSHELL; | 580 resource_id = IDR_TEXTAREA_RESIZER_TESTSHELL; |
| 581 break; | 581 break; |
| 582 } | 582 } |
| 583 // TODO(flackr): Pass scale_factor. | 583 // TODO(flackr): Pass scale_factor. |
| 584 return TestShell::ResourceProvider(resource_id); | 584 return TestShell::ResourceProvider(resource_id); |
| 585 } | 585 } |
| OLD | NEW |