summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-30 18:12:40 +0000
committerfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-30 18:12:40 +0000
commit2680647749e543496dd48e32b1e8334e9582b536 (patch)
tree240845d1d996b1b602a9953a0edc8a1e979ab828 /chrome
parenta39ebb776d61a09d7dc670dfab01b502e37d035e (diff)
downloadchromium_src-2680647749e543496dd48e32b1e8334e9582b536.zip
chromium_src-2680647749e543496dd48e32b1e8334e9582b536.tar.gz
chromium_src-2680647749e543496dd48e32b1e8334e9582b536.tar.bz2
Coverity nit. Enums lacking name...
BUG=None TEST=No need for one. Review URL: http://codereview.chromium.org/151056 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19611 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/views/find_bar_win_browsertest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/views/find_bar_win_browsertest.cc b/chrome/browser/views/find_bar_win_browsertest.cc
index b79e18e..6b4c265 100644
--- a/chrome/browser/views/find_bar_win_browsertest.cc
+++ b/chrome/browser/views/find_bar_win_browsertest.cc
@@ -76,8 +76,8 @@ class FindInPageNotificationObserver : public NotificationObserver {
int current_find_request_id_;
};
-typedef enum FindInPageDirection { BACK = 0, FWD = 1 };
-typedef enum FindInPageCase { IGNORE_CASE = 0, CASE_SENSITIVE = 1 };
+typedef enum { BACK = 0, FWD = 1 } FindInPageDirection;
+typedef enum { IGNORE_CASE = 0, CASE_SENSITIVE = 1 } FindInPageCase;
class FindInPageControllerTest : public InProcessBrowserTest {
public: