Chromium Code Reviews| Index: samples/android_sample/jni/types.h |
| diff --git a/samples/android_sample/jni/types.h b/samples/android_sample/jni/types.h |
| deleted file mode 100644 |
| index c5ddf2dc0e4162325ce7c7b7df4adae30416643b..0000000000000000000000000000000000000000 |
| --- a/samples/android_sample/jni/types.h |
| +++ /dev/null |
| @@ -1,19 +0,0 @@ |
| -#ifndef TYPES_H |
| -#define TYPES_H |
| - |
| -struct Location { |
| - Location() : pos_x_(0), pos_y_(0) { |
| - }; |
| - void setPosition(float pos_x, float pos_y) { |
| - pos_x_ = pos_x; |
| - pos_y_ = pos_y; |
| - } |
| - void translate(float amount_x, float amount_y) { |
| - pos_x_ += amount_x; |
| - pos_y_ += amount_y; |
| - } |
| - |
| - float pos_x_, pos_y_; |
| -}; |
| -#endif |
| - |