45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
// Copyright (c) 2014 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef SHELL_BROWSER_WEB_VIEW_MANAGER_H_
|
|
#define SHELL_BROWSER_WEB_VIEW_MANAGER_H_
|
|
|
|
#include <map>
|
|
|
|
#include "content/public/browser/browser_plugin_guest_manager.h"
|
|
|
|
namespace electron {
|
|
|
|
class WebViewManager : public content::BrowserPluginGuestManager {
|
|
public:
|
|
WebViewManager();
|
|
~WebViewManager() override;
|
|
|
|
// disable copy
|
|
WebViewManager(const WebViewManager&) = delete;
|
|
WebViewManager& operator=(const WebViewManager&) = delete;
|
|
|
|
void AddGuest(int guest_instance_id,
|
|
content::WebContents* embedder,
|
|
content::WebContents* web_contents);
|
|
void RemoveGuest(int guest_instance_id);
|
|
|
|
static WebViewManager* GetWebViewManager(content::WebContents* web_contents);
|
|
|
|
// content::BrowserPluginGuestManager:
|
|
bool ForEachGuest(content::WebContents* embedder,
|
|
const GuestCallback& callback) override;
|
|
|
|
private:
|
|
struct WebContentsWithEmbedder {
|
|
content::WebContents* web_contents;
|
|
content::WebContents* embedder;
|
|
};
|
|
// guest_instance_id => (web_contents, embedder)
|
|
std::map<int, WebContentsWithEmbedder> web_contents_embedder_map_;
|
|
};
|
|
|
|
} // namespace electron
|
|
|
|
#endif // SHELL_BROWSER_WEB_VIEW_MANAGER_H_
|