| 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 24 matching lines...) Expand all Loading... |
| 35 #include "webkit/glue/webpreferences.h" | 35 #include "webkit/glue/webpreferences.h" |
| 36 #include "webkit/glue/weburlrequest.h" | 36 #include "webkit/glue/weburlrequest.h" |
| 37 #include "webkit/glue/webview.h" | 37 #include "webkit/glue/webview.h" |
| 38 #include "webkit/glue/webwidget.h" | 38 #include "webkit/glue/webwidget.h" |
| 39 #include "webkit/glue/plugins/plugin_list.h" | 39 #include "webkit/glue/plugins/plugin_list.h" |
| 40 #include "webkit/tools/test_shell/mac/test_shell_webview.h" | 40 #include "webkit/tools/test_shell/mac/test_shell_webview.h" |
| 41 #include "webkit/tools/test_shell/resource.h" | 41 #include "webkit/tools/test_shell/resource.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 | 44 |
| 45 #import "third_party/skia/include/core/SkBitmap.h" | 45 #include "third_party/skia/include/core/SkBitmap.h" |
| 46 | 46 |
| 47 #import "mac/DumpRenderTreePasteboard.h" | 47 #import "mac/DumpRenderTreePasteboard.h" |
| 48 | 48 |
| 49 #define MAX_LOADSTRING 100 | 49 #define MAX_LOADSTRING 100 |
| 50 | 50 |
| 51 // Sizes for URL bar layout | 51 // Sizes for URL bar layout |
| 52 #define BUTTON_HEIGHT 22 | 52 #define BUTTON_HEIGHT 22 |
| 53 #define BUTTON_WIDTH 72 | 53 #define BUTTON_WIDTH 72 |
| 54 #define BUTTON_MARGIN 8 | 54 #define BUTTON_MARGIN 8 |
| 55 #define URLBAR_HEIGHT 32 | 55 #define URLBAR_HEIGHT 32 |
| (...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 return false; | 710 return false; |
| 711 } | 711 } |
| 712 | 712 |
| 713 void DidLoadPlugin(const std::string& filename) { | 713 void DidLoadPlugin(const std::string& filename) { |
| 714 } | 714 } |
| 715 | 715 |
| 716 void DidUnloadPlugin(const std::string& filename) { | 716 void DidUnloadPlugin(const std::string& filename) { |
| 717 } | 717 } |
| 718 | 718 |
| 719 } // namespace webkit_glue | 719 } // namespace webkit_glue |
| OLD | NEW |