Commit fd4edbad authored by groby@chromium.org's avatar groby@chromium.org

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
parent 7307474f
......@@ -14,8 +14,9 @@
class InternalWebIntentsDispatcherTest
: public content::RenderViewHostTestHarness {
public:
InternalWebIntentsDispatcherTest() {
replied_ = 0;
InternalWebIntentsDispatcherTest()
: replied_(0),
notified_reply_type_(webkit_glue::WEB_INTENT_REPLY_INVALID) {
}
~InternalWebIntentsDispatcherTest() {}
......
......@@ -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,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment