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 #ifndef CONTENT_PUBLIC_TEST_BROWSER_TEST_UTILS_H_ | 5 #ifndef CONTENT_PUBLIC_TEST_BROWSER_TEST_UTILS_H_ |
6 #define CONTENT_PUBLIC_TEST_BROWSER_TEST_UTILS_H_ | 6 #define CONTENT_PUBLIC_TEST_BROWSER_TEST_UTILS_H_ |
7 | 7 |
8 #include <queue> | 8 #include <queue> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "content/public/browser/browser_message_filter.h" | 21 #include "content/public/browser/browser_message_filter.h" |
22 #include "content/public/browser/notification_observer.h" | 22 #include "content/public/browser/notification_observer.h" |
23 #include "content/public/browser/notification_registrar.h" | 23 #include "content/public/browser/notification_registrar.h" |
24 #include "content/public/browser/render_process_host_observer.h" | 24 #include "content/public/browser/render_process_host_observer.h" |
25 #include "content/public/browser/web_contents_delegate.h" | 25 #include "content/public/browser/web_contents_delegate.h" |
26 #include "content/public/browser/web_contents_observer.h" | 26 #include "content/public/browser/web_contents_observer.h" |
27 #include "content/public/common/page_type.h" | 27 #include "content/public/common/page_type.h" |
28 #include "ipc/message_filter.h" | 28 #include "ipc/message_filter.h" |
29 #include "storage/common/fileapi/file_system_types.h" | 29 #include "storage/common/fileapi/file_system_types.h" |
30 #include "third_party/WebKit/public/platform/WebInputEvent.h" | 30 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
| 31 #include "third_party/WebKit/public/platform/WebMouseEvent.h" |
31 #include "ui/accessibility/ax_node_data.h" | 32 #include "ui/accessibility/ax_node_data.h" |
32 #include "ui/accessibility/ax_tree_update.h" | 33 #include "ui/accessibility/ax_tree_update.h" |
33 #include "ui/events/keycodes/dom/dom_code.h" | 34 #include "ui/events/keycodes/dom/dom_code.h" |
34 #include "ui/events/keycodes/dom/dom_key.h" | 35 #include "ui/events/keycodes/dom/dom_key.h" |
35 #include "ui/events/keycodes/keyboard_codes.h" | 36 #include "ui/events/keycodes/keyboard_codes.h" |
36 #include "url/gurl.h" | 37 #include "url/gurl.h" |
37 | 38 |
38 #if defined(OS_WIN) | 39 #if defined(OS_WIN) |
39 #include "base/win/scoped_handle.h" | 40 #include "base/win/scoped_handle.h" |
40 #endif | 41 #endif |
(...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
755 | 756 |
756 private: | 757 private: |
757 PwnMessageHelper(); // Not instantiable. | 758 PwnMessageHelper(); // Not instantiable. |
758 | 759 |
759 DISALLOW_COPY_AND_ASSIGN(PwnMessageHelper); | 760 DISALLOW_COPY_AND_ASSIGN(PwnMessageHelper); |
760 }; | 761 }; |
761 | 762 |
762 } // namespace content | 763 } // namespace content |
763 | 764 |
764 #endif // CONTENT_PUBLIC_TEST_BROWSER_TEST_UTILS_H_ | 765 #endif // CONTENT_PUBLIC_TEST_BROWSER_TEST_UTILS_H_ |
OLD | NEW |