Chromium Code Reviews| Index: build/android/gyp/test/java/org/chromium/helloworld/HelloWorldPrinter.java |
| diff --git a/content/test/data/web_ui_test_mojo_bindings.mojom b/build/android/gyp/test/java/org/chromium/helloworld/HelloWorldPrinter.java |
| similarity index 53% |
| copy from content/test/data/web_ui_test_mojo_bindings.mojom |
| copy to build/android/gyp/test/java/org/chromium/helloworld/HelloWorldPrinter.java |
| index 45f291fdb4fc614cd291a5eb3be324c292fe4083..69d84fb2f3ca8b4dd7e223c378fdc02182a7aa3d 100644 |
| --- a/content/test/data/web_ui_test_mojo_bindings.mojom |
| +++ b/build/android/gyp/test/java/org/chromium/helloworld/HelloWorldPrinter.java |
| @@ -2,15 +2,11 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -module content { |
| - |
| -[Client=RendererTarget] |
| -interface BrowserTarget { |
| - PingResponse(); |
| -}; |
| - |
| -interface RendererTarget { |
| - Ping(); |
| -}; |
| +package org.chromium.helloworld; |
| +public class HelloWorldPrinter { |
| + public static void print() { |
| + System.out.println("Hello World!"); |
|
newt (away)
2014/11/03 22:12:44
important grammar fix: comma after Hello
cjhopman
2014/11/15 03:37:59
Done.
|
| + } |
| } |
| + |