Index: build/android/gyp/test/java/org/chromium/helloworld/HelloWorldPrinter.java |
diff --git a/cc/resources/raster_buffer.cc b/build/android/gyp/test/java/org/chromium/helloworld/HelloWorldPrinter.java |
similarity index 53% |
copy from cc/resources/raster_buffer.cc |
copy to build/android/gyp/test/java/org/chromium/helloworld/HelloWorldPrinter.java |
index 8f5671720e386ef03d7bea099ab3ce6164dcacd8..b09673e21f4fd488cb8441002486bb5f8fba032d 100644 |
--- a/cc/resources/raster_buffer.cc |
+++ b/build/android/gyp/test/java/org/chromium/helloworld/HelloWorldPrinter.java |
@@ -2,14 +2,11 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "cc/resources/raster_buffer.h" |
+package org.chromium.helloworld; |
-namespace cc { |
- |
-RasterBuffer::RasterBuffer() { |
-} |
- |
-RasterBuffer::~RasterBuffer() { |
+public class HelloWorldPrinter { |
+ public static void print() { |
+ System.out.println("Hello, world!"); |
+ } |
} |
-} // namespace cc |