diff options
author | fsamuel@chromium.org <fsamuel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-17 01:35:36 +0000 |
---|---|---|
committer | fsamuel@chromium.org <fsamuel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-17 01:35:36 +0000 |
commit | 8c8dea5f61594ced357fd89c6e00b194cadb4c23 (patch) | |
tree | 0d22653965791514b8f128aafabe581fe9f0564f /content/common/browser_plugin | |
parent | c4acb5d373b0d553e066848486b84505d2515d34 (diff) | |
download | chromium_src-8c8dea5f61594ced357fd89c6e00b194cadb4c23.zip chromium_src-8c8dea5f61594ced357fd89c6e00b194cadb4c23.tar.gz chromium_src-8c8dea5f61594ced357fd89c6e00b194cadb4c23.tar.bz2 |
<webview>: Move JavaScript Dialog API to chrome
BUG=330264
Review URL: https://codereview.chromium.org/239143007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@264378 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/browser_plugin')
-rw-r--r-- | content/common/browser_plugin/browser_plugin_constants.cc | 3 | ||||
-rw-r--r-- | content/common/browser_plugin/browser_plugin_constants.h | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/content/common/browser_plugin/browser_plugin_constants.cc b/content/common/browser_plugin/browser_plugin_constants.cc index 6db08c7..4b413d3 100644 --- a/content/common/browser_plugin/browser_plugin_constants.cc +++ b/content/common/browser_plugin/browser_plugin_constants.cc @@ -44,13 +44,10 @@ const char kAttributePartition[] = "partition"; const char kAttributeSrc[] = "src"; // Parameters/properties on events. -const char kDefaultPromptText[] = "defaultPromptText"; const char kId[] = "id"; const char kInitialHeight[] = "initialHeight"; const char kInitialWidth[] = "initialWidth"; const char kLastUnlockedBySelf[] = "lastUnlockedBySelf"; -const char kMessageText[] = "messageText"; -const char kMessageType[] = "messageType"; const char kName[] = "name"; const char kPermission[] = "permission"; const char kPermissionTypeDialog[] = "dialog"; diff --git a/content/common/browser_plugin/browser_plugin_constants.h b/content/common/browser_plugin/browser_plugin_constants.h index d0cb104..efcc8be 100644 --- a/content/common/browser_plugin/browser_plugin_constants.h +++ b/content/common/browser_plugin/browser_plugin_constants.h @@ -44,13 +44,10 @@ extern const char kAttributePartition[]; extern const char kAttributeSrc[]; // Parameters/properties on events. -extern const char kDefaultPromptText[]; extern const char kId[]; extern const char kInitialHeight[]; extern const char kInitialWidth[]; extern const char kLastUnlockedBySelf[]; -extern const char kMessageText[]; -extern const char kMessageType[]; extern const char kName[]; extern const char kPermission[]; extern const char kPermissionTypeDialog[]; |