Chromium Code Reviews| Index: mojo/shell/android/shell_apk/src/org/chromium/mojo_shell_apk/MojoShellApplication.java |
| diff --git a/printing/image_android.cc b/mojo/shell/android/shell_apk/src/org/chromium/mojo_shell_apk/MojoShellApplication.java |
| similarity index 52% |
| copy from printing/image_android.cc |
| copy to mojo/shell/android/shell_apk/src/org/chromium/mojo_shell_apk/MojoShellApplication.java |
| index 544cf070d93f723ca2bd9a3a715863f13d98e76d..775e3a4ea9f992bbce80e2e49a604422cce3c649 100644 |
| --- a/printing/image_android.cc |
| +++ b/mojo/shell/android/shell_apk/src/org/chromium/mojo_shell_apk/MojoShellApplication.java |
| @@ -2,12 +2,9 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#include "printing/image.h" |
| +package org.chromium.mojo_shell_apk; |
| -namespace printing { |
| +import org.chromium.base.BaseChromiumApplication; |
|
joth
2013/10/24 04:37:57
oh!, kind of funky we have "Application" concept i
abarth-chromium
2013/10/24 13:43:05
It doesn't seem to do much, but I thought it was b
|
| -bool Image::LoadMetafile(const Metafile& metafile) { |
| - return false; |
| +public class MojoShellApplication extends BaseChromiumApplication { |
| } |
| - |
| -} // namespace printing |