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

Side by Side Diff: mandoline/app/android/mandoline_activity.cc

Issue 1677293002: Bye bye Mandoline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moar Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/android/jni_string.h"
6 #include "jni/MandolineActivity_jni.h"
7 #include "mandoline/ui/desktop_ui/public/interfaces/launch_handler.mojom.h"
8 #include "mojo/shell/connect_util.h"
9 #include "mojo/shell/standalone/android/main.h"
10 #include "mojo/shell/standalone/context.h"
11
12 namespace mandoline {
13
14 static void LaunchURL(JNIEnv* env,
15 const JavaParamRef<jclass>& clazz,
16 const JavaParamRef<jstring>& jurl) {
17 LaunchHandlerPtr launch_handler;
18 mojo::shell::ConnectToService(
19 mojo::shell::GetContext()->application_manager(), GURL("mojo:phone_ui"),
20 &launch_handler);
21 launch_handler->LaunchURL(
22 base::android::ConvertJavaStringToUTF8(env, jurl));
23 }
24
25 bool RegisterMandolineActivity(JNIEnv* env) {
26 return RegisterNativesImpl(env);
27 }
28
29 } // namespace mandoline
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698