| Index: components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GCMDriver.java
|
| diff --git a/components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GCMDriver.java b/components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GCMDriver.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..13b975201dae9d497fc98388a6ab8973c3fbc8e0
|
| --- /dev/null
|
| +++ b/components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/GCMDriver.java
|
| @@ -0,0 +1,22 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +package org.chromium.components.gcm_driver;
|
| +
|
| +import org.chromium.base.CalledByNative;
|
| +import org.chromium.base.JNINamespace;
|
| +
|
| +/**
|
| + * This will provide an implementation of GCMDriver using the Java GCM APIs.
|
| + */
|
| +@JNINamespace("gcm")
|
| +public final class GCMDriver {
|
| + /*
|
| + * JNI Generator complains if there are no methods exposed to JNI.
|
| + * TODO(johnme): Replace this with something useful.
|
| + */
|
| + @CalledByNative
|
| + private static void doNothing() {
|
| + }
|
| +}
|
|
|