| 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);
|
| }
|
|
|