diff options
Diffstat (limited to 'chrome/browser/views/bookmark_editor_view.h')
-rw-r--r-- | chrome/browser/views/bookmark_editor_view.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/views/bookmark_editor_view.h b/chrome/browser/views/bookmark_editor_view.h index a03d3e9..98f5269 100644 --- a/chrome/browser/views/bookmark_editor_view.h +++ b/chrome/browser/views/bookmark_editor_view.h @@ -113,7 +113,7 @@ class BookmarkEditorView : public BookmarkEditor, private: // Type of node in the tree. - typedef TreeNodeWithValue<int> EditorNode; + typedef TreeNodeWithValue<int64> EditorNode; // Model for the TreeView. Trivial subclass that doesn't allow titles with // empty strings. @@ -175,7 +175,7 @@ class BookmarkEditorView : public BookmarkEditor, void CreateNodes(const BookmarkNode* bb_node, EditorNode* b_node); // Returns the node with the specified id, or NULL if one can't be found. - EditorNode* FindNodeWithID(BookmarkEditorView::EditorNode* node, int id); + EditorNode* FindNodeWithID(BookmarkEditorView::EditorNode* node, int64 id); // Invokes ApplyEdits with the selected node. void ApplyEdits(); |