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

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

Issue 264943006: BrowserPlugin: Simplify content/public API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@guestview_manager_v1
Patch Set: Fixed nit 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_BROWSER_BROWSER_PLUGIN_TEST_GUEST_MANAGER_DELEGATE_H_ 5 #ifndef CONTENT_BROWSER_BROWSER_PLUGIN_TEST_GUEST_MANAGER_DELEGATE_H_
6 #define CONTENT_BROWSER_BROWSER_PLUGIN_TEST_GUEST_MANAGER_DELEGATE_H_ 6 #define CONTENT_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 // BrowserPluginGuestManagerDelegate implementation. 23 // BrowserPluginGuestManagerDelegate implementation.
24 virtual int GetNextInstanceID() OVERRIDE; 24 virtual int GetNextInstanceID() OVERRIDE;
25 virtual void AddGuest(int guest_instance_id, 25 virtual void AddGuest(int guest_instance_id,
26 WebContents* guest_web_contents) OVERRIDE; 26 WebContents* guest_web_contents) OVERRIDE;
27 virtual void RemoveGuest(int guest_instance_id) OVERRIDE; 27 virtual void RemoveGuest(int guest_instance_id) OVERRIDE;
28 virtual WebContents* GetGuestByInstanceID( 28 virtual void MaybeGetGuestByInstanceIDOrKill(
29 int guest_instance_id, 29 int guest_instance_id,
30 int embedder_render_process_id) OVERRIDE;
31 virtual bool CanEmbedderAccessInstanceIDMaybeKill(
32 int embedder_render_process_id, 30 int embedder_render_process_id,
33 int guest_instance_id) OVERRIDE; 31 const GuestByInstanceIDCallback& callback) OVERRIDE;
34 virtual bool CanEmbedderAccessInstanceID(int embedder_render_process_id,
35 int guest_instance_id) OVERRIDE;
36 virtual SiteInstance* GetGuestSiteInstance( 32 virtual SiteInstance* GetGuestSiteInstance(
37 const GURL& guest_site) OVERRIDE; 33 const GURL& guest_site) OVERRIDE;
38 virtual bool ForEachGuest(WebContents* embedder_web_contents, 34 virtual bool ForEachGuest(WebContents* embedder_web_contents,
39 const GuestCallback& callback) OVERRIDE; 35 const GuestCallback& callback) OVERRIDE;
40 36
41 private: 37 private:
42 friend struct DefaultSingletonTraits<TestGuestManagerDelegate>; 38 friend struct DefaultSingletonTraits<TestGuestManagerDelegate>;
43 TestGuestManagerDelegate(); 39 TestGuestManagerDelegate();
44 // Contains guests' WebContents, mapping from their instance ids. 40 // Contains guests' WebContents, mapping from their instance ids.
45 typedef std::map<int, WebContents*> GuestInstanceMap; 41 typedef std::map<int, WebContents*> GuestInstanceMap;
46 GuestInstanceMap guest_web_contents_by_instance_id_; 42 GuestInstanceMap guest_web_contents_by_instance_id_;
47 43
48 int next_instance_id_; 44 int next_instance_id_;
49 45
50 DISALLOW_COPY_AND_ASSIGN(TestGuestManagerDelegate); 46 DISALLOW_COPY_AND_ASSIGN(TestGuestManagerDelegate);
51 }; 47 };
52 48
53 } // namespace content 49 } // namespace content
54 50
55 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_TEST_GUEST_MANAGER_DELEGATE_H_ 51 #endif // CONTENT_BROWSER_BROWSER_PLUGIN_TEST_GUEST_MANAGER_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698