summaryrefslogtreecommitdiffstats
path: root/ppapi/c/dev/ppb_console_dev.h
diff options
context:
space:
mode:
authorviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-13 02:45:20 +0000
committerviettrungluu@chromium.org <viettrungluu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-13 02:45:20 +0000
commita5ae7c6219ce83f19f3adabbada22e3f68104c44 (patch)
treeb4ef4f899a8f99c411fce7d276c19785aafe540a /ppapi/c/dev/ppb_console_dev.h
parent03f54587d056d2c0812358fb9897b3c665ce12e0 (diff)
downloadchromium_src-a5ae7c6219ce83f19f3adabbada22e3f68104c44.zip
chromium_src-a5ae7c6219ce83f19f3adabbada22e3f68104c44.tar.gz
chromium_src-a5ae7c6219ce83f19f3adabbada22e3f68104c44.tar.bz2
Add values to all dev Pepper .idl enumerations.
TBR=dmichael@chromium.org Review URL: http://codereview.chromium.org/8522002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109818 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c/dev/ppb_console_dev.h')
-rw-r--r--ppapi/c/dev/ppb_console_dev.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ppapi/c/dev/ppb_console_dev.h b/ppapi/c/dev/ppb_console_dev.h
index ede1a3b5..5f30527 100644
--- a/ppapi/c/dev/ppb_console_dev.h
+++ b/ppapi/c/dev/ppb_console_dev.h
@@ -3,7 +3,7 @@
* found in the LICENSE file.
*/
-/* From dev/ppb_console_dev.idl modified Fri Aug 26 13:53:19 2011. */
+/* From dev/ppb_console_dev.idl modified Fri Nov 11 20:17:52 2011. */
#ifndef PPAPI_C_DEV_PPB_CONSOLE_DEV_H_
#define PPAPI_C_DEV_PPB_CONSOLE_DEV_H_
@@ -29,9 +29,9 @@
*/
typedef enum {
PP_LOGLEVEL_TIP = 0,
- PP_LOGLEVEL_LOG,
- PP_LOGLEVEL_WARNING,
- PP_LOGLEVEL_ERROR
+ PP_LOGLEVEL_LOG = 1,
+ PP_LOGLEVEL_WARNING = 2,
+ PP_LOGLEVEL_ERROR = 3
} PP_LogLevel_Dev;
PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_LogLevel_Dev, 4);
/**