Chromium Code Reviews| Index: blimp/client/public/contents/blimp_contents.h |
| diff --git a/blimp/client/public/contents/blimp_contents.h b/blimp/client/public/contents/blimp_contents.h |
| index ea11aa7305a00239917de041d3f01b50c2fd34d8..109d321205c7a988a89b9e6eb401bfe3ae504214 100644 |
| --- a/blimp/client/public/contents/blimp_contents.h |
| +++ b/blimp/client/public/contents/blimp_contents.h |
| @@ -9,6 +9,10 @@ |
| #include "base/supports_user_data.h" |
| #include "url/gurl.h" |
| +#if defined(OS_ANDROID) |
| +#include "base/android/scoped_java_ref.h" |
| +#endif |
| + |
| namespace blimp { |
| namespace client { |
| @@ -31,6 +35,10 @@ class BlimpContents : public base::SupportsUserData { |
| virtual void AddObserver(BlimpContentsObserver* observer) = 0; |
| virtual void RemoveObserver(BlimpContentsObserver* observer) = 0; |
| +#if defined(OS_ANDROID) |
| + virtual base::android::ScopedJavaLocalRef<jobject> GetJavaObject() = 0; |
|
nyquist
2016/08/16 19:09:20
Could you add a comment as to what is the guarante
shaktisahu
2016/08/16 23:46:13
Done.
|
| +#endif |
| + |
| protected: |
| BlimpContents() {} |