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

Side by Side Diff: content/browser/browser_plugin/test_browser_plugin_guest.h

Issue 10868012: Browser Plugin: New Implementation (Browser Side) (Closed) Base URL: http://git.chromium.org/chromium/src.git@master-trial-obrowser
Patch Set: integrate windows fix by Fady (original cl #10910228) Created 8 years, 3 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_BROWSER_BROWSER_PLUGIN_TEST_BROWSER_PLUGIN_GUEST_H_
6 #define CONTENT_BROWSER_BROWSER_PLUGIN_TEST_BROWSER_PLUGIN_GUEST_H_
7
8 #include "base/compiler_specific.h"
9 #include "base/process_util.h"
10 #include "content/browser/browser_plugin/browser_plugin_guest.h"
11 #include "content/public/test/test_utils.h"
12 #include "ipc/ipc_channel_handle.h"
13
14 class WebContentsImpl;
15
16 namespace content {
17
18 class RenderProcessHost;
19 class RenderViewHost;
20
21 // Test class for BrowserPluginGuest.
22 //
23 // Provides utilities to wait for certain state/messages in BrowserPluginGuest
24 // to be used in tests.
25 class TestBrowserPluginGuest : public BrowserPluginGuest {
26 public:
27 TestBrowserPluginGuest(int instance_id,
28 WebContentsImpl* web_contents,
29 RenderViewHost* render_view_host);
30 virtual ~TestBrowserPluginGuest();
31
32 // Overriden methods from BrowserPluginGuest to intercept in test objects.
33 virtual void RenderViewGone(base::TerminationStatus status) OVERRIDE;
34 virtual void SetFocus(bool focused) OVERRIDE;
35 virtual bool ViewTakeFocus(bool reverse) OVERRIDE;
36
37 // Test utilities to wait for a event we are interested in, returns true if we
38 // timed out waiting for the event to happen.
39 // Waits until UpdateRect message is sent from the guest, meaning it is
40 // ready/rendered.
41 bool WaitForUpdateRectMsg();
42 // Waits until UpdateRect message with a specific size is sent from the guest.
43 bool WaitForUpdateRectMsgWithSize(int width, int height);
44 // Waits until guest crashes.
45 bool WaitForCrashed();
46 // Waits for focus to reach this guest.
47 bool WaitForFocus();
48 bool WaitForAdvanceFocus();
49
50 private:
51 // Overriden methods from BrowserPluginGuest to intercept in test objects.
52 virtual void SendMessageToEmbedder(IPC::Message* msg) OVERRIDE;
53
54 int update_rect_count_;
55 bool crash_observed_;
56 bool focus_observed_;
57 bool advance_focus_observed_;
58
59 // For WaitForUpdateRectMsgWithSize().
60 bool waiting_for_update_rect_msg_with_size_;
61 int expected_width_;
62 int expected_height_;
63
64 int last_update_rect_width_;
65 int last_update_rect_height_;
66
67 scoped_refptr<MessageLoopRunner> send_message_loop_runner_;
68 scoped_refptr<MessageLoopRunner> crash_message_loop_runner_;
69 scoped_refptr<MessageLoopRunner> focus_message_loop_runner_;
70 scoped_refptr<MessageLoopRunner> advance_focus_message_loop_runner_;
71
72 DISALLOW_COPY_AND_ASSIGN(TestBrowserPluginGuest);
73 };
74
75 } // namespace content
76
77 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_TEST_BROWSER_PLUGIN_GUEST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698