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

Unified Diff: ios/chrome/browser/ui/browser_view_controller.mm

Issue 2630733002: Remove obsolete TODO (Closed)
Patch Set: Created 3 years, 11 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: ios/chrome/browser/ui/browser_view_controller.mm
diff --git a/ios/chrome/browser/ui/browser_view_controller.mm b/ios/chrome/browser/ui/browser_view_controller.mm
index 113c3f260c4522d7a3eb9e881a56fb0c0dfc688e..3509d68559ea10667cee4be52299d5c63aa0d3fc 100644
--- a/ios/chrome/browser/ui/browser_view_controller.mm
+++ b/ios/chrome/browser/ui/browser_view_controller.mm
@@ -3914,7 +3914,6 @@ class BrowserBookmarkModelBridge : public bookmarks::BookmarkModelObserver {
switch (command) {
case IDC_BACK:
- // TODO(crbug.com/677160): Remove |canGoBack| check.
if ([_model currentTab].canGoBack) {
[[_model currentTab] goBack];
}
@@ -3958,7 +3957,6 @@ class BrowserBookmarkModelBridge : public bookmarks::BookmarkModelObserver {
[self searchFindInPage];
break;
case IDC_FORWARD:
- // TODO(crbug.com/677160): Remove |canGoForward| check.
if ([_model currentTab].canGoForward) {
[[_model currentTab] goForward];
}
« 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