diff options
author | fsamuel@chromium.org <fsamuel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-12 19:59:19 +0000 |
---|---|---|
committer | fsamuel@chromium.org <fsamuel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-12 19:59:19 +0000 |
commit | af1718c96bdbb97961614cf2ee3512894ec78e0c (patch) | |
tree | b8dca11c3077de9313a669f6f92fbc4b3385bad1 /content/common/browser_plugin/browser_plugin_constants.cc | |
parent | b4d47f8095585e5fd12b7bf332e12c0e1e0ed3b9 (diff) | |
download | chromium_src-af1718c96bdbb97961614cf2ee3512894ec78e0c.zip chromium_src-af1718c96bdbb97961614cf2ee3512894ec78e0c.tar.gz chromium_src-af1718c96bdbb97961614cf2ee3512894ec78e0c.tar.bz2 |
<webview>: Refactor Permission API to chrome
BUG=166165
Test=WebViewTest.*, WebViewInteractiveTest.*
TBR=cdn@chromium.org for removing IPCs in browser_plugin_messages.h
NOTRY=true, previous patch worked, just merging.
Review URL: https://chromiumcodereview.appspot.com/21297005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@217057 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/browser_plugin/browser_plugin_constants.cc')
-rw-r--r-- | content/common/browser_plugin/browser_plugin_constants.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/content/common/browser_plugin/browser_plugin_constants.cc b/content/common/browser_plugin/browser_plugin_constants.cc index 691366b..9ba17bc 100644 --- a/content/common/browser_plugin/browser_plugin_constants.cc +++ b/content/common/browser_plugin/browser_plugin_constants.cc @@ -25,7 +25,6 @@ const char kMethodInternalAttach[] = "-internal-attach"; const char kMethodInternalAttachWindowTo[] = "-internal-attachWindowTo"; const char kMethodInternalTrackObjectLifetime[] = "-internal-trackObjectLifetime"; -const char kMethodInternalSetPermission[] = "-internal-setPermission"; // Internal events. const char kEventInternalInstanceIDAllocated[] = "instanceid-allocated"; @@ -44,9 +43,6 @@ const char kAttributePartition[] = "partition"; const char kAttributeSrc[] = "src"; // Events. -const char kEventDialog[] = "dialog"; -const char kEventNewWindow[] = "newwindow"; -const char kEventRequestPermission[] = "permissionrequest"; const char kEventSizeChanged[] = "sizechanged"; // Parameters/properties on events. @@ -90,6 +86,7 @@ const char kErrorCannotRemovePartition[] = // Other. const char kBrowserPluginGuestManagerKeyName[] = "browser_plugin_guest_manager"; const int kInstanceIDNone = 0; +const int kInvalidPermissionRequestID = 0; } // namespace browser_plugin |