Index: blimp/client/core/contents/android/java/src/org/chromium/blimp/core/contents/BlimpContentsFactory.java |
diff --git a/blimp/client/core/contents/android/java/src/org/chromium/blimp/core/contents/BlimpContentsFactory.java b/blimp/client/core/contents/android/java/src/org/chromium/blimp/core/contents/BlimpContentsFactory.java |
deleted file mode 100644 |
index b0419585205eb112ca4237b25f0787e1ae94fe5c..0000000000000000000000000000000000000000 |
--- a/blimp/client/core/contents/android/java/src/org/chromium/blimp/core/contents/BlimpContentsFactory.java |
+++ /dev/null |
@@ -1,27 +0,0 @@ |
-// Copyright 2016 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.blimp.core.contents; |
- |
-import org.chromium.base.annotations.JNINamespace; |
-import org.chromium.blimp_public.contents.BlimpContents; |
- |
-/** |
- * This factory creates BlimpContents objects and the associated native counterpart. |
- */ |
-@JNINamespace("blimp::client") |
-public final class BlimpContentsFactory { |
- // Don't instantiate me. |
- private BlimpContentsFactory() {} |
- |
- /** |
- * A factory method to build a {@link BlimpContents} object. |
- * @return A newly created {@link BlimpContents} object. |
- */ |
- public static BlimpContents createBlimpContents() { |
- return nativeCreateBlimpContents(); |
- } |
- |
- private static native BlimpContents nativeCreateBlimpContents(); |
-} |