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

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

Issue 1027903002: Enable tracing in SkyShell (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « sky/shell/library_loader.cc ('k') | sky/shell/org/domokit/sky/shell/TracingController.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/shell/org/domokit/sky/shell/SkyActivity.java
diff --git a/sky/shell/org/domokit/sky/shell/SkyActivity.java b/sky/shell/org/domokit/sky/shell/SkyActivity.java
index e37114d64835c92c96afc130d1e7075cc48bccd6..c28f7289f4042deba2dc6cbd67fb3506e2d9995f 100644
--- a/sky/shell/org/domokit/sky/shell/SkyActivity.java
+++ b/sky/shell/org/domokit/sky/shell/SkyActivity.java
@@ -13,6 +13,7 @@ import android.view.WindowManager;
* Base class for activities that use Sky.
*/
public class SkyActivity extends Activity {
+ private TracingController mTracingController;
private PlatformView mView;
/**
@@ -32,6 +33,7 @@ public class SkyActivity extends Activity {
SkyMain.ensureInitialized(getApplicationContext());
mView = new PlatformView(this);
setContentView(mView);
+ mTracingController = new TracingController(this);
}
public void loadUrl(String url) {
« no previous file with comments | « sky/shell/library_loader.cc ('k') | sky/shell/org/domokit/sky/shell/TracingController.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698