summaryrefslogtreecommitdiffstats
path: root/chrome/browser/bookmarks/bookmark_folder_editor_controller.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/bookmarks/bookmark_folder_editor_controller.cc')
-rw-r--r--chrome/browser/bookmarks/bookmark_folder_editor_controller.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/bookmarks/bookmark_folder_editor_controller.cc b/chrome/browser/bookmarks/bookmark_folder_editor_controller.cc
index 06f3ef4..0d04891 100644
--- a/chrome/browser/bookmarks/bookmark_folder_editor_controller.cc
+++ b/chrome/browser/bookmarks/bookmark_folder_editor_controller.cc
@@ -63,10 +63,16 @@ bool BookmarkFolderEditorController::IsValid(const std::wstring& text) {
void BookmarkFolderEditorController::InputAccepted(const std::wstring& text) {
if (IsNew()) {
+#if defined(OS_WIN)
+ // TODO(viettrungluu): Implement this the following for the tabbed bookmark
+ // manager?
ALLOW_UNUSED const BookmarkNode* node =
model_->AddGroup(node_, index_, text);
if ((details_ & SHOW_IN_MANAGER) != 0)
BookmarkManager::SelectInTree(profile_, node);
+#else
+ model_->AddGroup(node_, index_, text);
+#endif
} else {
model_->SetTitle(node_, text);
}