diff options
Diffstat (limited to 'chrome/common/page_action.h')
-rw-r--r-- | chrome/common/page_action.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/page_action.h b/chrome/common/page_action.h index ea08da3..c22b96f 100644 --- a/chrome/common/page_action.h +++ b/chrome/common/page_action.h @@ -16,10 +16,10 @@ class PageAction { PageAction(); virtual ~PageAction(); - typedef enum PageActionType { + typedef enum { PERMANENT = 0, TAB = 1, - }; + } PageActionType; std::string id() const { return id_; } void set_id(std::string id) { id_ = id; } |