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

Unified Diff: content/public/android/java/src/org/chromium/content/browser/SelectActionMode.java

Issue 1178253005: Use Chromium's logging utility for content files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 6 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: content/public/android/java/src/org/chromium/content/browser/SelectActionMode.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/SelectActionMode.java b/content/public/android/java/src/org/chromium/content/browser/SelectActionMode.java
index 776a05f7477be01cd059cd104d9b2eea857b815d..2fd80ed18fd923d9e6b213a4714ac55db66609d5 100644
--- a/content/public/android/java/src/org/chromium/content/browser/SelectActionMode.java
+++ b/content/public/android/java/src/org/chromium/content/browser/SelectActionMode.java
@@ -4,15 +4,16 @@
package org.chromium.content.browser;
-import android.util.Log;
import android.view.ActionMode;
+import org.chromium.base.Log;
+
/**
* An ActionMode for in-page selection. This class wraps an ActionMode created
* by the associated View, providing modified interaction with that ActionMode.
*/
public class SelectActionMode {
- private static final String TAG = "SelectActionMode";
+ private static final String TAG = "cr.SelectActionMode";
protected final ActionMode mActionMode;

Powered by Google App Engine
This is Rietveld 408576698