diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-02 00:49:18 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-02 00:49:18 +0000 |
commit | 82d10b14f9b4150ce1e154629dec9dcddadcf272 (patch) | |
tree | 73ff8f839552d1c7cfaa418d0531406a927fd185 /chrome/common | |
parent | 362e0041180293d9d81bc053a85912a9b3bd1089 (diff) | |
download | chromium_src-82d10b14f9b4150ce1e154629dec9dcddadcf272.zip chromium_src-82d10b14f9b4150ce1e154629dec9dcddadcf272.tar.gz chromium_src-82d10b14f9b4150ce1e154629dec9dcddadcf272.tar.bz2 |
Fix a gcc 4.3 warning in page_action.h.
Patch from Livio Soares <liviobs@gmail.com>.
Review URL: http://codereview.chromium.org/99309
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15126 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-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; } |