diff options
author | lazyboy@chromium.org <lazyboy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-08 23:01:08 +0000 |
---|---|---|
committer | lazyboy@chromium.org <lazyboy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-08-08 23:01:08 +0000 |
commit | 635d2c37fcc7cddd325e716ac412569053bf6ab6 (patch) | |
tree | ce7daf33c33b401e9fbaedf334cf171346dcac99 /content/common/browser_plugin | |
parent | 57d60f7797cceec256a7d20bdc8020e44075d67a (diff) | |
download | chromium_src-635d2c37fcc7cddd325e716ac412569053bf6ab6.zip chromium_src-635d2c37fcc7cddd325e716ac412569053bf6ab6.tar.gz chromium_src-635d2c37fcc7cddd325e716ac412569053bf6ab6.tar.bz2 |
Minor cleanup: Remove some unused consts in c/common/browser_plugin/
BUG=None
Test=Compiles, no visible changes.
Review URL: https://chromiumcodereview.appspot.com/22325011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216471 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 | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/content/common/browser_plugin/browser_plugin_constants.cc b/content/common/browser_plugin/browser_plugin_constants.cc index bd20b85..691366b 100644 --- a/content/common/browser_plugin/browser_plugin_constants.cc +++ b/content/common/browser_plugin/browser_plugin_constants.cc @@ -47,16 +47,13 @@ const char kAttributeSrc[] = "src"; const char kEventDialog[] = "dialog"; const char kEventNewWindow[] = "newwindow"; const char kEventRequestPermission[] = "permissionrequest"; -const char kEventResponsive[] = "responsive"; const char kEventSizeChanged[] = "sizechanged"; -const char kEventUnresponsive[] = "unresponsive"; // Parameters/properties on events. const char kDefaultPromptText[] = "defaultPromptText"; const char kId[] = "id"; const char kInitialHeight[] = "initialHeight"; const char kInitialWidth[] = "initialWidth"; -const char kIsTopLevel[] = "isTopLevel"; const char kLastUnlockedBySelf[] = "lastUnlockedBySelf"; const char kMessageText[] = "messageText"; const char kMessageType[] = "messageType"; diff --git a/content/common/browser_plugin/browser_plugin_constants.h b/content/common/browser_plugin/browser_plugin_constants.h index ba8dd06..a411741 100644 --- a/content/common/browser_plugin/browser_plugin_constants.h +++ b/content/common/browser_plugin/browser_plugin_constants.h @@ -56,7 +56,6 @@ extern const char kDefaultPromptText[]; extern const char kId[]; extern const char kInitialHeight[]; extern const char kInitialWidth[]; -extern const char kIsTopLevel[]; extern const char kLastUnlockedBySelf[]; extern const char kMessageText[]; extern const char kMessageType[]; |