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

Unified Diff: sky/shell/android/org/domokit/sky/shell/SkyActivity.java

Issue 1169983005: sky/shell updates for Android and iOS (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 6 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: sky/shell/android/org/domokit/sky/shell/SkyActivity.java
diff --git a/sky/shell/android/org/domokit/sky/shell/SkyActivity.java b/sky/shell/android/org/domokit/sky/shell/SkyActivity.java
index 101c282665a69eac5f649a47fee7c7af9ad19e23..3ce65de0663e0a0a583d8785e64a29ece1a41d35 100644
--- a/sky/shell/android/org/domokit/sky/shell/SkyActivity.java
+++ b/sky/shell/android/org/domokit/sky/shell/SkyActivity.java
@@ -15,7 +15,7 @@ import android.view.WindowManager;
*/
public class SkyActivity extends Activity {
private TracingController mTracingController;
- private PlatformView mView;
+ private PlatformViewAndroid mView;
/**
* @see android.app.Activity#onCreate(android.os.Bundle)
@@ -33,7 +33,7 @@ public class SkyActivity extends Activity {
| View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN);
SkyMain.ensureInitialized(getApplicationContext());
- mView = new PlatformView(this);
+ mView = new PlatformViewAndroid(this);
setContentView(mView);
mTracingController = new TracingController(this);
}

Powered by Google App Engine
This is Rietveld 408576698