diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-29 22:29:17 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-29 22:29:17 +0000 |
commit | f361715be1b1ff841f41d4438bea00f2f993a8ba (patch) | |
tree | 0effd59f4688e6ec1d99879281e9bc82ba3b469d /chrome/test/ui/ui_test.h | |
parent | e7d0f64997e7cc2670265a489411ef457b5fc53c (diff) | |
download | chromium_src-f361715be1b1ff841f41d4438bea00f2f993a8ba.zip chromium_src-f361715be1b1ff841f41d4438bea00f2f993a8ba.tar.gz chromium_src-f361715be1b1ff841f41d4438bea00f2f993a8ba.tar.bz2 |
Coverity: Add the typedef keyword to the ProfileType enum so we're not creating an instance of the enum.
CID=5718
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/249035
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27547 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/ui/ui_test.h')
-rw-r--r-- | chrome/test/ui/ui_test.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/ui/ui_test.h b/chrome/test/ui/ui_test.h index 0b0c047..ae62a6e 100644 --- a/chrome/test/ui/ui_test.h +++ b/chrome/test/ui/ui_test.h @@ -444,7 +444,7 @@ class UITest : public testing::Test { void StopHttpServer(); // Profile theme type choices. - enum { + typedef enum { DEFAULT_THEME = 0, COMPLEX_THEME = 1, NATIVE_THEME = 2, |