Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1029)

Unified Diff: chrome/browser/android/blimp/chrome_blimp_client_context_delegate.h

Issue 2191743002: Setup the delegate in Chrome, so we may put chrome java functions we need in blimp to the delegate … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/android/blimp/chrome_blimp_client_context_delegate.h
diff --git a/chrome/browser/android/blimp/chrome_blimp_client_context_delegate.h b/chrome/browser/android/blimp/chrome_blimp_client_context_delegate.h
index c41765df005ba89232b769e01d0536d3d1bd3920..3b212e900d455a735b0ba4f017c28e21ea4e73bc 100644
--- a/chrome/browser/android/blimp/chrome_blimp_client_context_delegate.h
+++ b/chrome/browser/android/blimp/chrome_blimp_client_context_delegate.h
@@ -8,6 +8,10 @@
#include "base/macros.h"
#include "blimp/client/public/blimp_client_context_delegate.h"
+#if defined(OS_ANDROID)
+#include "base/android/jni_android.h"
+#endif // defined(OS_ANDROID)
+
class Profile;
namespace blimp {
@@ -29,6 +33,10 @@ class ChromeBlimpClientContextDelegate
~ChromeBlimpClientContextDelegate() override;
// BlimpClientContextDelegate implementation.
+#if defined(OS_ANDROID)
+ base::android::ScopedJavaLocalRef<jobject> GetJavaObject() override;
David Trainor- moved to gerrit 2016/08/03 19:39:54 Do we need this access at the Chrome layer now?
+#endif
+
void AttachBlimpContentsHelpers(
blimp::client::BlimpContents* blimp_contents) override;

Powered by Google App Engine
This is Rietveld 408576698