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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_aura_unittest.cc

Issue 2438853002: Renames aura::client::WindowTreeClient to WindowParentingClient (Closed)
Patch Set: cleanup Created 4 years, 1 month 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) 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/browser/renderer_host/render_widget_host_view_aura.h" 5 #include "content/browser/renderer_host/render_widget_host_view_aura.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <tuple> 10 #include <tuple>
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 #include "content/public/test/test_browser_context.h" 56 #include "content/public/test/test_browser_context.h"
57 #include "content/test/test_render_view_host.h" 57 #include "content/test/test_render_view_host.h"
58 #include "content/test/test_web_contents.h" 58 #include "content/test/test_web_contents.h"
59 #include "ipc/ipc_message.h" 59 #include "ipc/ipc_message.h"
60 #include "ipc/ipc_test_sink.h" 60 #include "ipc/ipc_test_sink.h"
61 #include "media/base/video_frame.h" 61 #include "media/base/video_frame.h"
62 #include "testing/gmock/include/gmock/gmock.h" 62 #include "testing/gmock/include/gmock/gmock.h"
63 #include "testing/gtest/include/gtest/gtest.h" 63 #include "testing/gtest/include/gtest/gtest.h"
64 #include "ui/aura/client/aura_constants.h" 64 #include "ui/aura/client/aura_constants.h"
65 #include "ui/aura/client/screen_position_client.h" 65 #include "ui/aura/client/screen_position_client.h"
66 #include "ui/aura/client/window_tree_client.h" 66 #include "ui/aura/client/window_parenting_client.h"
67 #include "ui/aura/env.h" 67 #include "ui/aura/env.h"
68 #include "ui/aura/layout_manager.h" 68 #include "ui/aura/layout_manager.h"
69 #include "ui/aura/test/aura_test_helper.h" 69 #include "ui/aura/test/aura_test_helper.h"
70 #include "ui/aura/test/aura_test_utils.h" 70 #include "ui/aura/test/aura_test_utils.h"
71 #include "ui/aura/test/test_cursor_client.h" 71 #include "ui/aura/test/test_cursor_client.h"
72 #include "ui/aura/test/test_screen.h" 72 #include "ui/aura/test/test_screen.h"
73 #include "ui/aura/test/test_window_delegate.h" 73 #include "ui/aura/test/test_window_delegate.h"
74 #include "ui/aura/window.h" 74 #include "ui/aura/window.h"
75 #include "ui/aura/window_event_dispatcher.h" 75 #include "ui/aura/window_event_dispatcher.h"
76 #include "ui/aura/window_observer.h" 76 #include "ui/aura/window_observer.h"
(...skipping 4605 matching lines...) Expand 10 before | Expand all | Expand 10 after
4682 4682
4683 // Retrieve the selected text from clipboard and verify it is as expected. 4683 // Retrieve the selected text from clipboard and verify it is as expected.
4684 base::string16 result_text; 4684 base::string16 result_text;
4685 clipboard->ReadText(ui::CLIPBOARD_TYPE_SELECTION, &result_text); 4685 clipboard->ReadText(ui::CLIPBOARD_TYPE_SELECTION, &result_text);
4686 EXPECT_EQ(expected_text, result_text); 4686 EXPECT_EQ(expected_text, result_text);
4687 } 4687 }
4688 } 4688 }
4689 #endif 4689 #endif
4690 4690
4691 } // namespace content 4691 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_aura.cc ('k') | content/browser/web_contents/web_contents_view_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698