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

Unified Diff: ui/platform_window/android/java/src/org/chromium/ui/PlatformWindowAndroid.java

Issue 1469803006: NOT FOR REVIEW: Aura Android: Content Shell compiles (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@auraclank_upstream_wthandroid
Patch Set: Temp Created 5 years 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
« no previous file with comments | « ui/platform_window/android/BUILD.gn ('k') | ui/platform_window/android/platform_window_jni_registrar.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/platform_window/android/java/src/org/chromium/ui/PlatformWindowAndroid.java
diff --git a/ui/platform_window/android/java/src/org/chromium/ui/PlatformWindowAndroid.java b/ui/platform_window/android/java/src/org/chromium/ui/PlatformWindowAndroid.java
index e28c4864f1480278b6e4852756aa872979e3193c..9c42028b8bda51f56e0e3c75413b575c10e9d17f 100644
--- a/ui/platform_window/android/java/src/org/chromium/ui/PlatformWindowAndroid.java
+++ b/ui/platform_window/android/java/src/org/chromium/ui/PlatformWindowAndroid.java
@@ -18,6 +18,8 @@ import android.view.inputmethod.InputConnection;
import org.chromium.base.annotations.CalledByNative;
import org.chromium.base.annotations.JNINamespace;
+import android.util.Log;
+
/**
* Exposes SurfaceView to native code.
*/
@@ -40,6 +42,7 @@ public class PlatformWindowAndroid extends SurfaceView {
public PlatformWindowAndroid(Context context, long nativeViewport, long nativeImeController) {
super(context);
+ Log.w("auraclank", "PlatformWindowAndroid - ctor");
setFocusable(true);
setFocusableInTouchMode(true);
@@ -58,6 +61,7 @@ public class PlatformWindowAndroid extends SurfaceView {
@Override
public void surfaceCreated(SurfaceHolder holder) {
+ Log.w("auraclank", "~~~ PlatformWindowAndroid - Surface created!");
assert mNativeMojoViewport != 0;
nativeSurfaceCreated(mNativeMojoViewport, holder.getSurface(), density);
}
« no previous file with comments | « ui/platform_window/android/BUILD.gn ('k') | ui/platform_window/android/platform_window_jni_registrar.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698