diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-05 19:44:07 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-05 19:44:07 +0000 |
commit | ff261dd319d123661c1cb37269e028731e4224e0 (patch) | |
tree | bdbb1a5bccab144664dd113a377630c37aab6ec3 /chrome/test/automation/tab_proxy.h | |
parent | 270ad8e901ff1f23920764208b23c430ecce05fb (diff) | |
download | chromium_src-ff261dd319d123661c1cb37269e028731e4224e0.zip chromium_src-ff261dd319d123661c1cb37269e028731e4224e0.tar.gz chromium_src-ff261dd319d123661c1cb37269e028731e4224e0.tar.bz2 |
Remove unnecessary typedef keywords that make gcc 4.3 unhappy.
Committed on behalf of Craig Schlenter.
http://codereview.chromium.org/40158
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11015 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/automation/tab_proxy.h')
-rw-r--r-- | chrome/test/automation/tab_proxy.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/test/automation/tab_proxy.h b/chrome/test/automation/tab_proxy.h index e5d36a7..26cdde5 100644 --- a/chrome/test/automation/tab_proxy.h +++ b/chrome/test/automation/tab_proxy.h @@ -24,8 +24,8 @@ class ConstrainedWindowProxy; class GURL; class Value; -typedef enum FindInPageDirection { BACK = 0, FWD = 1 }; -typedef enum FindInPageCase { IGNORE_CASE = 0, CASE_SENSITIVE = 1 }; +enum FindInPageDirection { BACK = 0, FWD = 1 }; +enum FindInPageCase { IGNORE_CASE = 0, CASE_SENSITIVE = 1 }; class TabProxy : public AutomationResourceProxy { public: |