Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(718)

Unified Diff: blimp/client/core/contents/android/java/src/org/chromium/blimp/core/contents/BlimpContentsFactory.java

Issue 2241623002: blimp: Move compositing, input and render widget feature to client/core. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moar gn fix Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
-}

Powered by Google App Engine
This is Rietveld 408576698