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

Unified Diff: samples/openglui/android/src/com/google/dartndk/DummyActivity.java

Issue 13345002: Cleaned up OpenGLUI samples and added Blasteroids. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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 | « samples/openglui/android/res/values/styles.xml ('k') | samples/openglui/emulator/emulator.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/openglui/android/src/com/google/dartndk/DummyActivity.java
===================================================================
--- samples/openglui/android/src/com/google/dartndk/DummyActivity.java (revision 20700)
+++ samples/openglui/android/src/com/google/dartndk/DummyActivity.java (working copy)
@@ -1,42 +0,0 @@
-package com.google.dartndk;
-
-import java.io.File;
-import java.io.FileOutputStream;
-import java.io.InputStream;
-import java.io.IOException;
-import java.io.OutputStream;
-
-import android.app.NativeActivity;
-import android.content.res.AssetManager;
-import android.os.Bundle;
-import android.util.Log;
-
-public class DummyActivity extends NativeActivity {
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- try {
- File localDir = getApplicationContext().getDir("dart", 0);
- String fileSystemPath = localDir.toString();
- String assetPath = "dart";
- AssetManager assetManager = getAssets();
- String[] files = assetManager.list(assetPath);
- byte[] buffer = new byte[1024];
- int read;
- for (String filename : files) {
- String dest = fileSystemPath + "/" + filename;
- Log.w("Dart", "Copying " + dest);
- InputStream in = assetManager.open(assetPath + "/" + filename);
- OutputStream out = new FileOutputStream(dest);
- while((read = in.read(buffer)) != -1){
- out.write(buffer, 0, read);
- }
- in.close();
- out.flush();
- ((FileOutputStream)out).getFD().sync();
- out.close();
- }
- } catch (IOException ex) {
- }
- }
-}
« no previous file with comments | « samples/openglui/android/res/values/styles.xml ('k') | samples/openglui/emulator/emulator.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698