| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/app/chrome_dll_resource.h" | |
| 6 #include "chrome/common/extensions/extension_action.h" | 5 #include "chrome/common/extensions/extension_action.h" |
| 7 | 6 |
| 8 int ExtensionAction::next_command_id_ = IDC_BROWSER_ACTION_FIRST; | |
| 9 | |
| 10 ExtensionAction::ExtensionAction() | 7 ExtensionAction::ExtensionAction() |
| 11 : type_(PAGE_ACTION), command_id_(next_command_id_++) { | 8 : type_(PAGE_ACTION) { |
| 12 } | 9 } |
| 13 | 10 |
| 14 ExtensionAction::~ExtensionAction() { | 11 ExtensionAction::~ExtensionAction() { |
| 15 } | 12 } |
| OLD | NEW |