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

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

Issue 2604853003: [ios] Fixed TODO format in BrowserViewController. (Closed)
Patch Set: Created 4 years 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 9263577d11dc9f38eb7e10b983605e59f3252a5b..4ec12ad0a69b7f82090ea76a2c9c1edbb2958879 100644
--- a/ios/chrome/browser/ui/browser_view_controller.mm
+++ b/ios/chrome/browser/ui/browser_view_controller.mm
@@ -3872,7 +3872,7 @@ class BrowserBookmarkModelBridge : public bookmarks::BookmarkModelObserver {
switch (command) {
case IDC_BACK:
- // TODO(crbug.com.677160): Remove |canGoBack| check.
+ // TODO(crbug.com/677160): Remove |canGoBack| check.
if ([_model currentTab].canGoBack) {
[[_model currentTab] goBack];
}
@@ -3916,7 +3916,7 @@ class BrowserBookmarkModelBridge : public bookmarks::BookmarkModelObserver {
[self searchFindInPage];
break;
case IDC_FORWARD:
- // TODO(crbug.com.677160): Remove |canGoForward| check.
+ // 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