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

Side by Side Diff: content/shell/browser/browser_plugin/test_guest_manager_delegate.h

Issue 261013005: BrowserPlugin: Move CreateGuest to chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@guestview_manager_simplify_api
Patch Set: Removed AddGuest/RemoveGuest from content API! w00t! Created 6 years, 7 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef CONTENT_SHELL_BROWSER_BROWSER_PLUGIN_TEST_GUEST_MANAGER_DELEGATE_H_ 5 #ifndef CONTENT_SHELL_BROWSER_BROWSER_PLUGIN_TEST_GUEST_MANAGER_DELEGATE_H_
6 #define CONTENT_SHELL_BROWSER_BROWSER_PLUGIN_TEST_GUEST_MANAGER_DELEGATE_H_ 6 #define CONTENT_SHELL_BROWSER_BROWSER_PLUGIN_TEST_GUEST_MANAGER_DELEGATE_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/memory/singleton.h" 10 #include "base/memory/singleton.h"
11 #include "content/public/browser/browser_plugin_guest_manager_delegate.h" 11 #include "content/public/browser/browser_plugin_guest_manager_delegate.h"
12 12
13 namespace content { 13 namespace content {
14 14
15 // This class is temporary until BrowserPluginHostTest.* tests are entirely 15 // This class is temporary until BrowserPluginHostTest.* tests are entirely
16 // moved out of content. 16 // moved out of content.
17 class TestGuestManagerDelegate : public BrowserPluginGuestManagerDelegate { 17 class TestGuestManagerDelegate : public BrowserPluginGuestManagerDelegate {
18 public: 18 public:
19 virtual ~TestGuestManagerDelegate(); 19 virtual ~TestGuestManagerDelegate();
20 20
21 static TestGuestManagerDelegate* GetInstance(); 21 static TestGuestManagerDelegate* GetInstance();
22 22
23 void AddGuest(int guest_instance_id, WebContents* guest_web_contents);
24 void RemoveGuest(int guest_instance_id);
25 SiteInstance* GetGuestSiteInstance(const GURL& guest_site);
26
23 // BrowserPluginGuestManagerDelegate implementation. 27 // BrowserPluginGuestManagerDelegate implementation.
28 virtual content::WebContents* CreateGuest(
29 content::SiteInstance* embedder_site_instance,
30 int instance_id,
31 const StorageInfo& storage_info,
32 scoped_ptr<base::DictionaryValue> extra_params) OVERRIDE;
24 virtual int GetNextInstanceID() OVERRIDE; 33 virtual int GetNextInstanceID() OVERRIDE;
25 virtual void AddGuest(int guest_instance_id,
26 WebContents* guest_web_contents) OVERRIDE;
27 virtual void RemoveGuest(int guest_instance_id) OVERRIDE;
28 virtual void MaybeGetGuestByInstanceIDOrKill( 34 virtual void MaybeGetGuestByInstanceIDOrKill(
29 int guest_instance_id, 35 int guest_instance_id,
30 int embedder_render_process_id, 36 int embedder_render_process_id,
31 const GuestByInstanceIDCallback& callback) OVERRIDE; 37 const GuestByInstanceIDCallback& callback) OVERRIDE;
32 virtual SiteInstance* GetGuestSiteInstance(
33 const GURL& guest_site) OVERRIDE;
34 virtual bool ForEachGuest(WebContents* embedder_web_contents, 38 virtual bool ForEachGuest(WebContents* embedder_web_contents,
35 const GuestCallback& callback) OVERRIDE; 39 const GuestCallback& callback) OVERRIDE;
36 40
37 private: 41 private:
38 friend struct DefaultSingletonTraits<TestGuestManagerDelegate>; 42 friend struct DefaultSingletonTraits<TestGuestManagerDelegate>;
39 TestGuestManagerDelegate(); 43 TestGuestManagerDelegate();
40 // Contains guests' WebContents, mapping from their instance ids. 44 // Contains guests' WebContents, mapping from their instance ids.
41 typedef std::map<int, WebContents*> GuestInstanceMap; 45 typedef std::map<int, WebContents*> GuestInstanceMap;
42 GuestInstanceMap guest_web_contents_by_instance_id_; 46 GuestInstanceMap guest_web_contents_by_instance_id_;
43 47
44 int next_instance_id_; 48 int next_instance_id_;
45 49
46 DISALLOW_COPY_AND_ASSIGN(TestGuestManagerDelegate); 50 DISALLOW_COPY_AND_ASSIGN(TestGuestManagerDelegate);
47 }; 51 };
48 52
49 } // namespace content 53 } // namespace content
50 54
51 #endif // CONTENT_SHELL_BROWSER_BROWSER_PLUGIN_TEST_GUEST_MANAGER_DELEGATE_H_ 55 #endif // CONTENT_SHELL_BROWSER_BROWSER_PLUGIN_TEST_GUEST_MANAGER_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698