summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authorgroby@chromium.org <groby@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-17 01:48:37 +0000
committergroby@chromium.org <groby@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-17 01:48:37 +0000
commitfd4edbad91f65bfab79276390de5db59b079fd3b (patch)
tree92bccf3bb7d70ad420a280cea1df2ac5133d6137 /webkit
parent7307474f771ee48241f2769edd19e3aea62c4031 (diff)
downloadchromium_src-fd4edbad91f65bfab79276390de5db59b079fd3b.zip
chromium_src-fd4edbad91f65bfab79276390de5db59b079fd3b.tar.gz
chromium_src-fd4edbad91f65bfab79276390de5db59b079fd3b.tar.bz2
Fix uninitialized member in ctor.
TBR=darin@chromium.org R=jhawkins@chromium.org BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10377180 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137606 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/glue/web_intent_reply_data.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/webkit/glue/web_intent_reply_data.h b/webkit/glue/web_intent_reply_data.h
index 25688d1..5be730d 100644
--- a/webkit/glue/web_intent_reply_data.h
+++ b/webkit/glue/web_intent_reply_data.h
@@ -12,6 +12,9 @@ namespace webkit_glue {
// Constant values use to indicate what type of reply the caller is getting from
// the web intents service page.
enum WebIntentReplyType {
+ // Invalid type. Use to initialize reply types.
+ WEB_INTENT_REPLY_INVALID,
+
// Sent for a reply message (success).
WEB_INTENT_REPLY_SUCCESS,