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

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

Issue 12021025: Merge the openglui samples into one. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix emulator sample build Created 7 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « samples/openglui/android/res/values/styles.xml ('k') | samples/openglui/emulator/emulator.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 package com.google.dartndk; 1 package com.google.dartndk;
2 2
3 import java.io.File; 3 import java.io.File;
4 import java.io.FileOutputStream; 4 import java.io.FileOutputStream;
5 import java.io.InputStream; 5 import java.io.InputStream;
6 import java.io.IOException; 6 import java.io.IOException;
7 import java.io.OutputStream; 7 import java.io.OutputStream;
8 8
9 import android.app.NativeActivity; 9 import android.app.NativeActivity;
10 import android.content.res.AssetManager; 10 import android.content.res.AssetManager;
(...skipping 22 matching lines...) Expand all
33 } 33 }
34 in.close(); 34 in.close();
35 out.flush(); 35 out.flush();
36 ((FileOutputStream)out).getFD().sync(); 36 ((FileOutputStream)out).getFD().sync();
37 out.close(); 37 out.close();
38 } 38 }
39 } catch (IOException ex) { 39 } catch (IOException ex) {
40 } 40 }
41 } 41 }
42 } 42 }
OLDNEW
« 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