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

Unified Diff: runtime/embedders/openglui/android/main.cc

Issue 13042015: Various OpenGLUI changes: (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
Index: runtime/embedders/openglui/android/main.cc
===================================================================
--- runtime/embedders/openglui/android/main.cc (revision 20570)
+++ runtime/embedders/openglui/android/main.cc (working copy)
@@ -4,15 +4,25 @@
#include "embedders/openglui/android/android_graphics_handler.h"
#include "embedders/openglui/android/android_input_handler.h"
+#include "embedders/openglui/android/android_resource.h"
+#include "embedders/openglui/android/android_sensor.h"
#include "embedders/openglui/android/android_sound_handler.h"
#include "embedders/openglui/android/eventloop.h"
#include "embedders/openglui/common/context.h"
#include "embedders/openglui/common/dart_host.h"
#include "embedders/openglui/common/vm_glue.h"
+android_app* application_ = NULL;
+
+Resource* MakePlatformResource(const char *path) {
+ return new AndroidResource(application_, path);
+}
+
void android_main(android_app* application) {
+ application_ = application;
app_dummy(); // Link in native_app_glue.
const char* resource_path = "/data/data/com.google.dartndk/app_dart";
+ EventLoop eventLoop(application);
AndroidGraphicsHandler graphics_handler(application, resource_path);
VMGlue vm_glue(&graphics_handler, resource_path);
AndroidInputHandler input_handler(&vm_glue, &graphics_handler);
@@ -24,7 +34,6 @@
app_context.sound_handler = &sound_handler;
app_context.timer = &timer;
app_context.vm_glue = &vm_glue;
- EventLoop eventLoop(application);
DartHost host(&app_context);
eventLoop.Run(&host, &input_handler);
}

Powered by Google App Engine
This is Rietveld 408576698