OLD | NEW |
(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/browser/notification_observer.h" |
| 12 #include "content/public/test/test_utils.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 NotificationObserver { |
| 27 public: |
| 28 TestBrowserPluginGuest(int instance_id, |
| 29 WebContentsImpl* web_contents, |
| 30 RenderViewHost* render_view_host); |
| 31 virtual ~TestBrowserPluginGuest(); |
| 32 |
| 33 // NotificationObserver method override. |
| 34 virtual void Observe(int type, |
| 35 const NotificationSource& source, |
| 36 const NotificationDetails& details) OVERRIDE; |
| 37 |
| 38 // Overridden methods from BrowserPluginGuest to intercept in test objects. |
| 39 virtual void RenderViewGone(base::TerminationStatus status) OVERRIDE; |
| 40 virtual void SetFocus(bool focused) OVERRIDE; |
| 41 virtual bool ViewTakeFocus(bool reverse) OVERRIDE; |
| 42 |
| 43 // Test utilities to wait for a event we are interested in. |
| 44 // Waits until UpdateRect message is sent from the guest, meaning it is |
| 45 // ready/rendered. |
| 46 void WaitForUpdateRectMsg(); |
| 47 // Waits until UpdateRect message with a specific size is sent from the guest. |
| 48 void WaitForUpdateRectMsgWithSize(int width, int height); |
| 49 // Waits for focus to reach this guest. |
| 50 void WaitForFocus(); |
| 51 // Wait for focus to move out of this guest. |
| 52 void WaitForAdvanceFocus(); |
| 53 // Wait until the guest is hidden. |
| 54 void WaitUntilHidden(); |
| 55 // Waits until guest crashes. |
| 56 void WaitForCrashed(); |
| 57 |
| 58 private: |
| 59 // Overridden methods from BrowserPluginGuest to intercept in test objects. |
| 60 virtual void SendMessageToEmbedder(IPC::Message* msg) OVERRIDE; |
| 61 |
| 62 int update_rect_count_; |
| 63 bool crash_observed_; |
| 64 bool focus_observed_; |
| 65 bool advance_focus_observed_; |
| 66 bool was_hidden_observed_; |
| 67 |
| 68 // For WaitForUpdateRectMsgWithSize(). |
| 69 bool waiting_for_update_rect_msg_with_size_; |
| 70 int expected_width_; |
| 71 int expected_height_; |
| 72 |
| 73 int last_update_rect_width_; |
| 74 int last_update_rect_height_; |
| 75 |
| 76 scoped_refptr<MessageLoopRunner> send_message_loop_runner_; |
| 77 scoped_refptr<MessageLoopRunner> crash_message_loop_runner_; |
| 78 scoped_refptr<MessageLoopRunner> focus_message_loop_runner_; |
| 79 scoped_refptr<MessageLoopRunner> advance_focus_message_loop_runner_; |
| 80 scoped_refptr<MessageLoopRunner> was_hidden_message_loop_runner_; |
| 81 |
| 82 // A scoped container for notification registries. |
| 83 NotificationRegistrar registrar_; |
| 84 |
| 85 DISALLOW_COPY_AND_ASSIGN(TestBrowserPluginGuest); |
| 86 }; |
| 87 |
| 88 } // namespace content |
| 89 |
| 90 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_TEST_BROWSER_PLUGIN_GUEST_H_ |
OLD | NEW |