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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_mac_unittest.mm

Issue 9473001: Extract minimal RenderViewHost interface for embedders, leaving (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to LKGR. Created 8 years, 9 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 | Annotate | Revision Log
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_mac.h" 5 #include "content/browser/renderer_host/render_widget_host_view_mac.h"
6 6
7 #include "base/mac/scoped_nsautorelease_pool.h" 7 #include "base/mac/scoped_nsautorelease_pool.h"
8 #include "content/browser/browser_thread_impl.h" 8 #include "content/browser/browser_thread_impl.h"
9 #include "content/browser/renderer_host/test_render_view_host.h" 9 #include "content/browser/renderer_host/test_render_view_host.h"
10 #include "content/common/gpu/gpu_messages.h" 10 #include "content/common/gpu/gpu_messages.h"
11 #include "testing/gtest/include/gtest/gtest.h" 11 #include "testing/gtest/include/gtest/gtest.h"
12 #include "ui/base/test/cocoa_test_event_utils.h" 12 #include "ui/base/test/cocoa_test_event_utils.h"
13 #import "ui/base/test/ui_cocoa_test_helper.h" 13 #import "ui/base/test/ui_cocoa_test_helper.h"
14 #include "webkit/plugins/npapi/webplugin.h" 14 #include "webkit/plugins/npapi/webplugin.h"
15 15
16 using content::BrowserThread; 16 using content::BrowserThread;
17 using content::BrowserThreadImpl; 17 using content::BrowserThreadImpl;
18 18
19 class RenderWidgetHostViewMacTest : public RenderViewHostTestHarness { 19 class RenderWidgetHostViewMacTest : public RenderViewHostTestHarness {
20 public: 20 public:
21 RenderWidgetHostViewMacTest() : old_rwhv_(NULL), rwhv_mac_(NULL) {} 21 RenderWidgetHostViewMacTest() : old_rwhv_(NULL), rwhv_mac_(NULL) {}
22 22
23 virtual void SetUp() { 23 virtual void SetUp() {
24 RenderViewHostTestHarness::SetUp(); 24 RenderViewHostTestHarness::SetUp();
25 25
26 // TestRenderViewHost's destruction assumes that its view is a 26 // TestRenderViewHost's destruction assumes that its view is a
27 // TestRenderWidgetHostView, so store its view and reset it back to the 27 // TestRenderWidgetHostView, so store its view and reset it back to the
28 // stored view in |TearDown()|. 28 // stored view in |TearDown()|.
29 old_rwhv_ = rvh()->view(); 29 old_rwhv_ = rvh()->GetView();
30 30
31 // Owned by its |cocoa_view()|, i.e. |rwhv_cocoa_|. 31 // Owned by its |cocoa_view()|, i.e. |rwhv_cocoa_|.
32 rwhv_mac_ = static_cast<RenderWidgetHostViewMac*>( 32 rwhv_mac_ = static_cast<RenderWidgetHostViewMac*>(
33 content::RenderWidgetHostView::CreateViewForWidget(rvh())); 33 content::RenderWidgetHostView::CreateViewForWidget(rvh()));
34 rwhv_cocoa_.reset([rwhv_mac_->cocoa_view() retain]); 34 rwhv_cocoa_.reset([rwhv_mac_->cocoa_view() retain]);
35 } 35 }
36 virtual void TearDown() { 36 virtual void TearDown() {
37 // See comment in SetUp(). 37 // See comment in SetUp().
38 rvh()->SetView(old_rwhv_); 38 rvh()->SetView(old_rwhv_);
39 39
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 193
194 // A click on the accelerated view should focus the RWHVCocoa. 194 // A click on the accelerated view should focus the RWHVCocoa.
195 std::pair<NSEvent*, NSEvent*> clicks = 195 std::pair<NSEvent*, NSEvent*> clicks =
196 cocoa_test_event_utils::MouseClickInView(accelerated_view, 1); 196 cocoa_test_event_utils::MouseClickInView(accelerated_view, 1);
197 [rwhv_cocoa_.get() mouseDown:clicks.first]; 197 [rwhv_cocoa_.get() mouseDown:clicks.first];
198 EXPECT_EQ(rwhv_cocoa_.get(), [window firstResponder]); 198 EXPECT_EQ(rwhv_cocoa_.get(), [window firstResponder]);
199 199
200 // Clean up. 200 // Clean up.
201 rwhv_mac_->DestroyFakePluginWindowHandle(accelerated_handle); 201 rwhv_mac_->DestroyFakePluginWindowHandle(accelerated_handle);
202 } 202 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698