| Index: blimp/client/core/contents/android/blimp_contents_factory.cc
|
| diff --git a/blimp/client/core/contents/android/blimp_contents_factory.cc b/blimp/client/core/contents/android/blimp_contents_factory.cc
|
| index 92a2ec9250899205c3c520de2336eefc7c27a794..ae3df18b7b310c89c5232d1bd9f9efbbb8c73e19 100644
|
| --- a/blimp/client/core/contents/android/blimp_contents_factory.cc
|
| +++ b/blimp/client/core/contents/android/blimp_contents_factory.cc
|
| @@ -12,6 +12,10 @@
|
|
|
| using base::android::JavaParamRef;
|
|
|
| +namespace {
|
| +const int kDummyTabId = 0;
|
| +}
|
| +
|
| namespace blimp {
|
| namespace client {
|
|
|
| @@ -20,7 +24,7 @@ static base::android::ScopedJavaLocalRef<jobject> CreateBlimpContents(
|
| const JavaParamRef<jclass>& clazz) {
|
| // To delete |blimp_contents_impl|, the Java caller must call the
|
| // destroy() method on BlimpContents.
|
| - BlimpContentsImpl* blimp_contents_impl = new BlimpContentsImpl;
|
| + BlimpContentsImpl* blimp_contents_impl = new BlimpContentsImpl(kDummyTabId);
|
| return blimp_contents_impl->GetJavaBlimpContentsImpl();
|
| }
|
|
|
|
|