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

Unified Diff: components/html_viewer/android/java/org/chromium/html_viewer/Main.java

Issue 1130763004: Gets mandoline working on android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: empty and old Created 5 years, 7 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/html_viewer/android/java/org/chromium/html_viewer/Main.java
diff --git a/components/html_viewer/android/java/org/chromium/html_viewer/Main.java b/components/html_viewer/android/java/org/chromium/html_viewer/Main.java
deleted file mode 100644
index 87a7b59426fc04ff7eaac4ba17e24db7ab355f80..0000000000000000000000000000000000000000
--- a/components/html_viewer/android/java/org/chromium/html_viewer/Main.java
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright 2015 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.html_viewer;
-
-import android.content.Context;
-
-import org.chromium.base.CalledByNative;
-import org.chromium.base.PathUtils;
-
-/**
- * This class does setup for html_viewer.
- */
-public final class Main {
- private static final String PRIVATE_DATA_DIRECTORY_SUFFIX = "html_viewer";
-
- private Main() {}
-
- @SuppressWarnings("unused")
- @CalledByNative
- private static void init(Context context) {
- PathUtils.setPrivateDataDirectorySuffix(PRIVATE_DATA_DIRECTORY_SUFFIX, context);
- }
-}

Powered by Google App Engine
This is Rietveld 408576698