Index: content/browser/browser_plugin/test_browser_plugin_guest_manager.h |
diff --git a/content/browser/browser_plugin/test_browser_plugin_guest_manager.h b/content/browser/browser_plugin/test_browser_plugin_guest_manager.h |
index d7683cf7ae9035ec9bf7bcc45922befb63784883..4415b674ab7d80dec10b1360cf50828b36e8c887 100644 |
--- a/content/browser/browser_plugin/test_browser_plugin_guest_manager.h |
+++ b/content/browser/browser_plugin/test_browser_plugin_guest_manager.h |
@@ -22,17 +22,11 @@ class WebContentsImpl; |
// BrowserPluginGuestManager to be used in tests. |
class TestBrowserPluginGuestManager : public BrowserPluginGuestManager { |
public: |
- typedef BrowserPluginGuestManager::GuestInstanceMap GuestInstanceMap; |
- |
- TestBrowserPluginGuestManager(); |
+ explicit TestBrowserPluginGuestManager(BrowserContext* context); |
virtual ~TestBrowserPluginGuestManager(); |
- const GuestInstanceMap& guest_web_contents_for_testing() const { |
- return guest_web_contents_by_instance_id_; |
- } |
- |
// Waits until at least one guest is added to the guest manager. |
- void WaitForGuestAdded(); |
+ WebContents* WaitForGuestAdded(); |
private: |
// BrowserPluginHostTest.ReloadEmbedder needs access to the GuestInstanceMap. |
@@ -40,8 +34,9 @@ class TestBrowserPluginGuestManager : public BrowserPluginGuestManager { |
// Overriden to intercept in test. |
virtual void AddGuest(int instance_id, |
- WebContentsImpl* guest_web_contents) OVERRIDE; |
+ WebContents* guest_web_contents) OVERRIDE; |
+ WebContents* last_guest_; |
lazyboy
2014/04/30 08:40:15
nit: last_guest_added_
Fady Samuel
2014/05/01 02:04:42
Done.
|
scoped_refptr<MessageLoopRunner> message_loop_runner_; |
DISALLOW_COPY_AND_ASSIGN(TestBrowserPluginGuestManager); |
}; |