| 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 "content/public/test/browser_test_utils.h" | 5 #include "content/public/test/browser_test_utils.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/auto_reset.h" | 10 #include "base/auto_reset.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #include "content/browser/accessibility/accessibility_mode_helper.h" | 24 #include "content/browser/accessibility/accessibility_mode_helper.h" |
| 25 #include "content/browser/accessibility/browser_accessibility.h" | 25 #include "content/browser/accessibility/browser_accessibility.h" |
| 26 #include "content/browser/accessibility/browser_accessibility_manager.h" | 26 #include "content/browser/accessibility/browser_accessibility_manager.h" |
| 27 #include "content/browser/frame_host/frame_tree_node.h" | 27 #include "content/browser/frame_host/frame_tree_node.h" |
| 28 #include "content/browser/frame_host/render_frame_host_impl.h" | 28 #include "content/browser/frame_host/render_frame_host_impl.h" |
| 29 #include "content/browser/renderer_host/render_widget_host_impl.h" | 29 #include "content/browser/renderer_host/render_widget_host_impl.h" |
| 30 #include "content/browser/web_contents/web_contents_impl.h" | 30 #include "content/browser/web_contents/web_contents_impl.h" |
| 31 #include "content/browser/web_contents/web_contents_view.h" | 31 #include "content/browser/web_contents/web_contents_view.h" |
| 32 #include "content/common/input/synthetic_web_input_event_builders.h" | 32 #include "content/common/input/synthetic_web_input_event_builders.h" |
| 33 #include "content/common/input_messages.h" | 33 #include "content/common/input_messages.h" |
| 34 #include "content/common/text_input_state.h" | |
| 35 #include "content/common/view_messages.h" | 34 #include "content/common/view_messages.h" |
| 36 #include "content/public/browser/browser_context.h" | 35 #include "content/public/browser/browser_context.h" |
| 37 #include "content/public/browser/histogram_fetcher.h" | 36 #include "content/public/browser/histogram_fetcher.h" |
| 38 #include "content/public/browser/navigation_entry.h" | 37 #include "content/public/browser/navigation_entry.h" |
| 39 #include "content/public/browser/notification_service.h" | 38 #include "content/public/browser/notification_service.h" |
| 40 #include "content/public/browser/notification_types.h" | 39 #include "content/public/browser/notification_types.h" |
| 41 #include "content/public/browser/render_frame_host.h" | 40 #include "content/public/browser/render_frame_host.h" |
| 42 #include "content/public/browser/render_process_host.h" | 41 #include "content/public/browser/render_process_host.h" |
| 43 #include "content/public/browser/render_view_host.h" | 42 #include "content/public/browser/render_view_host.h" |
| 44 #include "content/public/browser/storage_partition.h" | 43 #include "content/public/browser/storage_partition.h" |
| (...skipping 1184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1229 uint32_t InputMsgWatcher::WaitForAck() { | 1228 uint32_t InputMsgWatcher::WaitForAck() { |
| 1230 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 1229 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 1231 if (ack_result_ != INPUT_EVENT_ACK_STATE_UNKNOWN) | 1230 if (ack_result_ != INPUT_EVENT_ACK_STATE_UNKNOWN) |
| 1232 return ack_result_; | 1231 return ack_result_; |
| 1233 base::RunLoop run_loop; | 1232 base::RunLoop run_loop; |
| 1234 base::AutoReset<base::Closure> reset_quit(&quit_, run_loop.QuitClosure()); | 1233 base::AutoReset<base::Closure> reset_quit(&quit_, run_loop.QuitClosure()); |
| 1235 run_loop.Run(); | 1234 run_loop.Run(); |
| 1236 return ack_result_; | 1235 return ack_result_; |
| 1237 } | 1236 } |
| 1238 | 1237 |
| 1239 TextInputStateTestExport::TextInputStateTestExport( | |
| 1240 const ui::TextInputType& type, | |
| 1241 const std::string& value) | |
| 1242 : type_(type), value_(value) {} | |
| 1243 | |
| 1244 // static | |
| 1245 TextInputStateTestExport TextInputStateTestExport::FromWebContents( | |
| 1246 WebContents* web_contents) { | |
| 1247 const TextInputState* state = | |
| 1248 static_cast<WebContentsImpl*>(web_contents)->GetTextInputState(); | |
| 1249 | |
| 1250 return TextInputStateTestExport(state->type, state->value); | |
| 1251 } | |
| 1252 | |
| 1253 } // namespace content | 1238 } // namespace content |
| OLD | NEW |