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

Unified Diff: content/public/browser/browser_plugin_guest_delegate.h

Issue 299753011: Move allocate instance id to chrome/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: HasPermission function moved Created 6 years, 6 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/public/browser/browser_plugin_guest_delegate.h
diff --git a/content/public/browser/browser_plugin_guest_delegate.h b/content/public/browser/browser_plugin_guest_delegate.h
index c6df7289200b8eb5cfc1c073c64c7759183c473b..24dc3a8981acae847bcaca4c923b3f29bf53b6df 100644
--- a/content/public/browser/browser_plugin_guest_delegate.h
+++ b/content/public/browser/browser_plugin_guest_delegate.h
@@ -9,6 +9,10 @@
#include "base/process/kill.h"
#include "content/common/content_export.h"
+namespace base {
+class DictionaryValue;
+} // namespace base
+
namespace gfx {
class Size;
} // namespace gfx
@@ -24,7 +28,7 @@ class CONTENT_EXPORT BrowserPluginGuestDelegate {
virtual ~BrowserPluginGuestDelegate() {}
// Notification that the embedder has completed attachment.
- virtual void DidAttach() {}
+ virtual void DidAttach(const base::DictionaryValue& extra_params) {}
// Notifies that the content size of the guest has changed in autosize mode.
virtual void SizeChanged(const gfx::Size& old_size,
@@ -37,9 +41,6 @@ class CONTENT_EXPORT BrowserPluginGuestDelegate {
bool last_unlocked_by_target,
const base::Callback<void(bool)>& callback) {}
- // Request navigating the guest to the provided |src| URL.
- virtual void NavigateGuest(const std::string& src) {}
-
// Requests that the delegate destroy itself along with its associated
// WebContents.
virtual void Destroy() {}
« no previous file with comments | « content/common/browser_plugin/browser_plugin_messages.h ('k') | content/public/browser/browser_plugin_guest_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698