| Index: chrome/browser/views/bookmark_editor_view.cc
|
| ===================================================================
|
| --- chrome/browser/views/bookmark_editor_view.cc (revision 20552)
|
| +++ chrome/browser/views/bookmark_editor_view.cc (working copy)
|
| @@ -443,7 +443,7 @@
|
| tree_view_->ExpandAll();
|
|
|
| const BookmarkNode* to_select = node_ ? node_->GetParent() : parent_;
|
| - int group_id_to_select = to_select->id();
|
| + int64 group_id_to_select = to_select->id();
|
| DCHECK(group_id_to_select); // GetMostRecentParent should never return NULL.
|
| EditorNode* b_node =
|
| FindNodeWithID(tree_model_->GetRoot(), group_id_to_select);
|
| @@ -478,7 +478,7 @@
|
|
|
| BookmarkEditorView::EditorNode* BookmarkEditorView::FindNodeWithID(
|
| BookmarkEditorView::EditorNode* node,
|
| - int id) {
|
| + int64 id) {
|
| if (node->value == id)
|
| return node;
|
| for (int i = 0; i < node->GetChildCount(); ++i) {
|
|
|