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

Unified Diff: components/dom_distiller/android/java/src/org/chromium/components/dom_distiller/core/DomDistillerService.java

Issue 2252963004: Remove dom_distiller core dependency on content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix test deps 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: components/dom_distiller/android/java/src/org/chromium/components/dom_distiller/core/DomDistillerService.java
diff --git a/components/dom_distiller/android/java/src/org/chromium/components/dom_distiller/core/DomDistillerService.java b/components/dom_distiller/android/java/src/org/chromium/components/dom_distiller/core/DomDistillerService.java
deleted file mode 100644
index 80ec53fcbcc5e4e6f1b316745bc0325d0806309d..0000000000000000000000000000000000000000
--- a/components/dom_distiller/android/java/src/org/chromium/components/dom_distiller/core/DomDistillerService.java
+++ /dev/null
@@ -1,49 +0,0 @@
-// 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.dom_distiller.core;
-
-import org.chromium.base.ThreadUtils;
-import org.chromium.base.annotations.CalledByNative;
-import org.chromium.base.annotations.JNINamespace;
-
-/**
- * Wrapper for native dom_distiller::DomDistillerService.
- */
-@JNINamespace("dom_distiller::android")
-public final class DomDistillerService {
-
- private final long mDomDistillerServiceAndroid;
- private final DistilledPagePrefs mDistilledPagePrefs;
-
- private DomDistillerService(long nativeDomDistillerAndroidServicePtr) {
- mDomDistillerServiceAndroid = nativeDomDistillerAndroidServicePtr;
- mDistilledPagePrefs = new DistilledPagePrefs(
- nativeGetDistilledPagePrefsPtr(mDomDistillerServiceAndroid));
- }
-
- public DistilledPagePrefs getDistilledPagePrefs() {
- return mDistilledPagePrefs;
- }
-
- public boolean hasEntry(String entryId) {
- return nativeHasEntry(mDomDistillerServiceAndroid, entryId);
- }
-
- public String getUrlForEntry(String entryId) {
- return nativeGetUrlForEntry(mDomDistillerServiceAndroid, entryId);
- }
-
- @CalledByNative
- private static DomDistillerService create(long nativeDomDistillerServiceAndroid) {
- ThreadUtils.assertOnUiThread();
- return new DomDistillerService(nativeDomDistillerServiceAndroid);
- }
-
- private native boolean nativeHasEntry(long nativeDomDistillerServiceAndroid, String entryId);
- private native String nativeGetUrlForEntry(
- long nativeDomDistillerServiceAndroid, String entryId);
- private static native long nativeGetDistilledPagePrefsPtr(
- long nativeDomDistillerServiceAndroid);
-}

Powered by Google App Engine
This is Rietveld 408576698