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

Unified Diff: sky/shell/library_loader.cc

Issue 880443003: Plumb resize notifications around sky/shell (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: git cl format Created 5 years, 10 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: sky/shell/library_loader.cc
diff --git a/sky/shell/library_loader.cc b/sky/shell/library_loader.cc
index 0a283084bf1cce9d71346afa651e1f6979e844cf..1682167f95e49b6bc1088ae82fa8f6c96c6de74c 100644
--- a/sky/shell/library_loader.cc
+++ b/sky/shell/library_loader.cc
@@ -17,7 +17,7 @@ base::android::RegistrationMethod kSkyRegisteredMethods[] = {
{"SkyView", sky::shell::SkyView::Register},
};
-bool RegisterMojoJni(JNIEnv* env) {
+bool RegisterSkyJni(JNIEnv* env) {
return RegisterNativeMethods(env, kSkyRegisteredMethods,
arraysize(kSkyRegisteredMethods));
}
@@ -35,7 +35,7 @@ JNI_EXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) {
if (!base::android::RegisterJni(env))
return -1;
- if (!RegisterMojoJni(env))
+ if (!RegisterSkyJni(env))
return -1;
return JNI_VERSION_1_4;

Powered by Google App Engine
This is Rietveld 408576698