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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/enhanced_bookmarks/EnhancedBookmarksModel.java

Issue 968383002: Remove deprecated constructors from enhanced bookmark model (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/android/java/src/org/chromium/chrome/browser/enhanced_bookmarks/EnhancedBookmarksModel.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/enhanced_bookmarks/EnhancedBookmarksModel.java b/chrome/android/java/src/org/chromium/chrome/browser/enhanced_bookmarks/EnhancedBookmarksModel.java
index 32d60d1e381aa8657eca12c551509165055a414f..d18ee5012fc9c01959f1a56b25352efd5739998d 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/enhanced_bookmarks/EnhancedBookmarksModel.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/enhanced_bookmarks/EnhancedBookmarksModel.java
@@ -59,13 +59,8 @@ public class EnhancedBookmarksModel {
mEnhancedBookmarksBridge = new EnhancedBookmarksBridge(originalProfile);
}
- // TODO(ianwen): remove this constructor.
- public EnhancedBookmarksModel(int cacheSize) {
- this();
- }
-
@VisibleForTesting
- EnhancedBookmarksModel(Profile profile) {
+ public EnhancedBookmarksModel(Profile profile) {
mBookmarksBridge = new BookmarksBridge(profile);
mEnhancedBookmarksBridge = new EnhancedBookmarksBridge(profile);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698