OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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" |
11 | 11 |
12 #include "base/base_paths.h" | 12 #include "base/base_paths.h" |
13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
14 #include "base/debug/debugger.h" | 14 #include "base/debug/debugger.h" |
15 #include "base/file_path.h" | 15 #include "base/file_path.h" |
16 #include "base/file_util.h" | 16 #include "base/file_util.h" |
17 #include "base/logging.h" | 17 #include "base/logging.h" |
18 #include "base/mac/mac_util.h" | 18 #include "base/mac/mac_util.h" |
19 #include "base/mac/scoped_nsautorelease_pool.h" | 19 #include "base/mac/scoped_nsautorelease_pool.h" |
20 #include "base/memory/memory_debug.h" | |
21 #include "base/message_loop.h" | 20 #include "base/message_loop.h" |
22 #include "base/path_service.h" | 21 #include "base/path_service.h" |
23 #include "base/string16.h" | 22 #include "base/string16.h" |
24 #include "base/string_piece.h" | 23 #include "base/string_piece.h" |
25 #include "base/utf_string_conversions.h" | 24 #include "base/utf_string_conversions.h" |
26 #include "grit/webkit_resources.h" | 25 #include "grit/webkit_resources.h" |
27 #include "net/base/mime_util.h" | 26 #include "net/base/mime_util.h" |
28 #include "skia/ext/bitmap_platform_device.h" | 27 #include "skia/ext/bitmap_platform_device.h" |
29 #include "testing/gtest/include/gtest/gtest.h" | 28 #include "testing/gtest/include/gtest/gtest.h" |
30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" | 29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" |
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
676 return false; | 675 return false; |
677 } | 676 } |
678 | 677 |
679 void DidLoadPlugin(const std::string& filename) { | 678 void DidLoadPlugin(const std::string& filename) { |
680 } | 679 } |
681 | 680 |
682 void DidUnloadPlugin(const std::string& filename) { | 681 void DidUnloadPlugin(const std::string& filename) { |
683 } | 682 } |
684 | 683 |
685 } // namespace webkit_glue | 684 } // namespace webkit_glue |
OLD | NEW |