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 <ApplicationServices/ApplicationServices.h> | 5 #include <ApplicationServices/ApplicationServices.h> |
6 #import <Cocoa/Cocoa.h> | 6 #import <Cocoa/Cocoa.h> |
7 #import <objc/objc-runtime.h> | 7 #import <objc/objc-runtime.h> |
8 #include <sys/stat.h> | 8 #include <sys/stat.h> |
9 | 9 |
10 #include "webkit/tools/test_shell/test_shell.h" | 10 #include "webkit/tools/test_shell/test_shell.h" |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "base/message_loop.h" | 21 #include "base/message_loop.h" |
22 #include "base/path_service.h" | 22 #include "base/path_service.h" |
23 #include "base/stats_table.h" | 23 #include "base/stats_table.h" |
24 #include "base/string16.h" | 24 #include "base/string16.h" |
25 #include "base/string_piece.h" | 25 #include "base/string_piece.h" |
26 #include "base/string_util.h" | 26 #include "base/string_util.h" |
27 #include "grit/webkit_resources.h" | 27 #include "grit/webkit_resources.h" |
28 #include "net/base/mime_util.h" | 28 #include "net/base/mime_util.h" |
29 #include "skia/ext/bitmap_platform_device.h" | 29 #include "skia/ext/bitmap_platform_device.h" |
30 #include "testing/gtest/include/gtest/gtest.h" | 30 #include "testing/gtest/include/gtest/gtest.h" |
31 #include "webkit/api/public/WebFrame.h" | 31 #include "third_party/WebKit/WebKit/chromium/public/WebFrame.h" |
32 #include "webkit/api/public/WebView.h" | 32 #include "third_party/WebKit/WebKit/chromium/public/WebView.h" |
33 #include "webkit/glue/webkit_glue.h" | 33 #include "webkit/glue/webkit_glue.h" |
34 #include "webkit/glue/webpreferences.h" | 34 #include "webkit/glue/webpreferences.h" |
35 #include "webkit/glue/plugins/plugin_list.h" | 35 #include "webkit/glue/plugins/plugin_list.h" |
36 #include "webkit/tools/test_shell/mac/test_shell_webview.h" | 36 #include "webkit/tools/test_shell/mac/test_shell_webview.h" |
37 #include "webkit/tools/test_shell/resource.h" | 37 #include "webkit/tools/test_shell/resource.h" |
38 #include "webkit/tools/test_shell/simple_resource_loader_bridge.h" | 38 #include "webkit/tools/test_shell/simple_resource_loader_bridge.h" |
39 #include "webkit/tools/test_shell/test_navigation_controller.h" | 39 #include "webkit/tools/test_shell/test_navigation_controller.h" |
40 | 40 |
41 #include "third_party/skia/include/core/SkBitmap.h" | 41 #include "third_party/skia/include/core/SkBitmap.h" |
42 | 42 |
(...skipping 679 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
722 return false; | 722 return false; |
723 } | 723 } |
724 | 724 |
725 void DidLoadPlugin(const std::string& filename) { | 725 void DidLoadPlugin(const std::string& filename) { |
726 } | 726 } |
727 | 727 |
728 void DidUnloadPlugin(const std::string& filename) { | 728 void DidUnloadPlugin(const std::string& filename) { |
729 } | 729 } |
730 | 730 |
731 } // namespace webkit_glue | 731 } // namespace webkit_glue |
OLD | NEW |