Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(399)

Side by Side Diff: chrome/browser/chromeos/input_method/textinput_test_helper.cc

Issue 2876013002: Add missing IWYU message_loop.h includes. (Closed)
Patch Set: fix upstream Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 "chrome/browser/chromeos/input_method/textinput_test_helper.h"
5 #include "ash/shell.h" 6 #include "ash/shell.h"
7 #include "base/message_loop/message_loop.h"
6 #include "base/strings/string_number_conversions.h" 8 #include "base/strings/string_number_conversions.h"
7 #include "base/strings/string_split.h" 9 #include "base/strings/string_split.h"
8 #include "base/strings/string_util.h" 10 #include "base/strings/string_util.h"
9 #include "base/strings/utf_string_conversions.h" 11 #include "base/strings/utf_string_conversions.h"
10 #include "chrome/browser/chromeos/input_method/textinput_test_helper.h"
11 #include "chrome/browser/ui/browser.h" 12 #include "chrome/browser/ui/browser.h"
12 #include "chrome/test/base/interactive_test_utils.h" 13 #include "chrome/test/base/interactive_test_utils.h"
13 #include "content/public/browser/render_view_host.h" 14 #include "content/public/browser/render_view_host.h"
14 #include "content/public/browser/render_widget_host.h" 15 #include "content/public/browser/render_widget_host.h"
15 #include "content/public/browser/web_contents.h" 16 #include "content/public/browser/web_contents.h"
16 #include "content/public/test/browser_test_utils.h" 17 #include "content/public/test/browser_test_utils.h"
17 #include "ui/aura/window_event_dispatcher.h" 18 #include "ui/aura/window_event_dispatcher.h"
18 #include "ui/aura/window_tree_host.h" 19 #include "ui/aura/window_tree_host.h"
19 #include "ui/base/ime/input_method_factory.h" 20 #include "ui/base/ime/input_method_factory.h"
20 21
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 rect.CenterPoint().y()); 205 rect.CenterPoint().y());
205 mouse_event.click_count = 1; 206 mouse_event.click_count = 1;
206 tab->GetRenderViewHost()->GetWidget()->ForwardMouseEvent(mouse_event); 207 tab->GetRenderViewHost()->GetWidget()->ForwardMouseEvent(mouse_event);
207 208
208 mouse_event.SetType(blink::WebInputEvent::kMouseUp); 209 mouse_event.SetType(blink::WebInputEvent::kMouseUp);
209 tab->GetRenderViewHost()->GetWidget()->ForwardMouseEvent(mouse_event); 210 tab->GetRenderViewHost()->GetWidget()->ForwardMouseEvent(mouse_event);
210 return true; 211 return true;
211 } 212 }
212 213
213 } // namespace chromeos 214 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698