diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-15 06:36:08 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-15 06:36:08 +0000 |
commit | 83fe23a3ff26c5dea371ce94f6a909c4d081b145 (patch) | |
tree | 5117b7c3928d608f51f31a3279997e2716db6110 /chrome/common/extensions/extension_action.cc | |
parent | 8d34c475c53b27511a912880aebea627ad651625 (diff) | |
download | chromium_src-83fe23a3ff26c5dea371ce94f6a909c4d081b145.zip chromium_src-83fe23a3ff26c5dea371ce94f6a909c4d081b145.tar.gz chromium_src-83fe23a3ff26c5dea371ce94f6a909c4d081b145.tar.bz2 |
Reverting r29095 (removes wrench integration for
browser actions).
TBR=mpcomplete@chromium.org
BUG=24379,24671
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29097 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/extension_action.cc')
-rw-r--r-- | chrome/common/extensions/extension_action.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/common/extensions/extension_action.cc b/chrome/common/extensions/extension_action.cc index 2d3291e..dee9eed 100644 --- a/chrome/common/extensions/extension_action.cc +++ b/chrome/common/extensions/extension_action.cc @@ -2,10 +2,13 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include "chrome/app/chrome_dll_resource.h" #include "chrome/common/extensions/extension_action.h" +int ExtensionAction::next_command_id_ = IDC_BROWSER_ACTION_FIRST; + ExtensionAction::ExtensionAction() - : type_(PAGE_ACTION) { + : type_(PAGE_ACTION), command_id_(next_command_id_++) { } ExtensionAction::~ExtensionAction() { |