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/common/page_action.h" | 5 #include "chrome/common/page_action.h" |
6 | 6 |
7 PageAction::PageAction() | 7 ContextualAction::ContextualAction() |
8 : type_(PERMANENT) { | 8 : type_(PAGE_ACTION) { |
9 } | 9 } |
10 | 10 |
11 PageAction::~PageAction() { | 11 ContextualAction::~ContextualAction() { |
12 } | 12 } |
OLD | NEW |