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

Unified Diff: content/shell/browser/browser_plugin/test_guest_manager_delegate.h

Issue 258373002: Towards moving guest management to chrome: Introduce GuestViewManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Istiaque's comments Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: content/shell/browser/browser_plugin/test_guest_manager_delegate.h
diff --git a/content/shell/browser/browser_plugin/test_guest_manager_delegate.h b/content/shell/browser/browser_plugin/test_guest_manager_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..7e2e5eaecb0038f23c36ca5a00792be28a101694
--- /dev/null
+++ b/content/shell/browser/browser_plugin/test_guest_manager_delegate.h
@@ -0,0 +1,55 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_SHELL_BROWSER_BROWSER_PLUGIN_TEST_GUEST_MANAGER_DELEGATE_H_
+#define CONTENT_SHELL_BROWSER_BROWSER_PLUGIN_TEST_GUEST_MANAGER_DELEGATE_H_
+
+#include <map>
+
+#include "base/memory/singleton.h"
+#include "content/public/browser/browser_plugin_guest_manager_delegate.h"
+
+namespace content {
+
+// This class is temporary until BrowserPluginHostTest.* tests are entirely
+// moved out of content.
+class TestGuestManagerDelegate : public BrowserPluginGuestManagerDelegate {
jam 2014/05/02 19:09:06 this class shouldn't be in content/shell. i assume
Fady Samuel 2014/05/02 21:28:20 Done.
+ public:
+ virtual ~TestGuestManagerDelegate();
+
+ static TestGuestManagerDelegate* GetInstance();
+
+ // BrowserPluginGuestManagerDelegate implementation.
+ virtual int GetNextInstanceID() OVERRIDE;
+ virtual void AddGuest(int guest_instance_id,
+ WebContents* guest_web_contents) OVERRIDE;
+ virtual void RemoveGuest(int guest_instance_id) OVERRIDE;
+ virtual WebContents* GetGuestByInstanceID(
+ int guest_instance_id,
+ int embedder_render_process_id) OVERRIDE;
+ virtual bool CanEmbedderAccessInstanceIDMaybeKill(
+ int embedder_render_process_id,
+ int guest_instance_id) OVERRIDE;
+ virtual bool CanEmbedderAccessInstanceID(int embedder_render_process_id,
+ int guest_instance_id) OVERRIDE;
+ virtual SiteInstance* GetGuestSiteInstance(
+ const GURL& guest_site) OVERRIDE;
+ virtual bool ForEachGuest(WebContents* embedder_web_contents,
+ const GuestCallback& callback) OVERRIDE;
+
+ private:
+ friend struct DefaultSingletonTraits<TestGuestManagerDelegate>;
+ TestGuestManagerDelegate();
+ // Contains guests' WebContents, mapping from their instance ids.
+ typedef std::map<int, WebContents*> GuestInstanceMap;
+ GuestInstanceMap guest_web_contents_by_instance_id_;
+
+ int next_instance_id_;
+
+ DISALLOW_COPY_AND_ASSIGN(TestGuestManagerDelegate);
+};
+
+} // namespace content
+
+#endif // CONTENT_SHELL_BROWSER_BROWSER_PLUGIN_TEST_GUEST_MANAGER_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698