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

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: Rework tests to use timeouts instead of waiting indefinitely, not store any Guest* in embedder. 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
35 // Test utilities to wait for a event we are interested in, returns true if we
36 // timed out waiting for the event to happen.
37 // Waits until UpdateRect message is sent from the guest, meaning it is
38 // ready/rendered.
39 bool WaitForUpdateRectMsg();
40 // Waits until UpdateRect message with a specific size is sent from the guest.
41 bool WaitForUpdateRectMsgWithSize(int width, int height);
42 // Waits until guest crashes.
43 bool WaitForCrashed();
44
45 private:
46 // Overriden methods from BrowserPluginGuest to intercept in test objects.
47 virtual void SendMessageToEmbedder(IPC::Message* msg) OVERRIDE;
48
49 int update_rect_count_;
50 bool crash_observed_;
51
52 // For WaitForUpdateRectMsgWithSize().
53 bool waiting_for_update_rect_msg_with_size_;
54 int expected_width_;
55 int expected_height_;
56
57 int last_update_rect_width_;
58 int last_update_rect_height_;
59
60 scoped_refptr<MessageLoopRunner> send_message_loop_runner_;
61 scoped_refptr<MessageLoopRunner> crash_message_loop_runner_;
62
63 DISALLOW_COPY_AND_ASSIGN(TestBrowserPluginGuest);
64 };
65
66 } // namespace content
67
68 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_TEST_BROWSER_PLUGIN_GUEST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698