| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_BOOKMARK_DRAG_DATA_ | 5 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_DRAG_DATA_ |
| 6 #define CHROME_BROWSER_BOOKMARK_DRAG_DATA_ | 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_DRAG_DATA_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "chrome/browser/history/history.h" | 10 #include "chrome/browser/history/history.h" |
| 11 #include "googleurl/src/gurl.h" | 11 #include "googleurl/src/gurl.h" |
| 12 | 12 |
| 13 class BookmarkBarModel; | 13 class BookmarkBarModel; |
| 14 class BookmarkBarNode; | 14 class BookmarkBarNode; |
| 15 class OSExchangeData; | 15 class OSExchangeData; |
| 16 class Pickle; | 16 class Pickle; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 | 71 |
| 72 bool ReadFromPickle(Pickle* pickle, void** iterator); | 72 bool ReadFromPickle(Pickle* pickle, void** iterator); |
| 73 | 73 |
| 74 // Adds to children an entry for each child of node. | 74 // Adds to children an entry for each child of node. |
| 75 void AddChildren(BookmarkBarNode* node); | 75 void AddChildren(BookmarkBarNode* node); |
| 76 | 76 |
| 77 // ID (node->id()) of the node this BookmarkDragData was created from. | 77 // ID (node->id()) of the node this BookmarkDragData was created from. |
| 78 int id_; | 78 int id_; |
| 79 }; | 79 }; |
| 80 | 80 |
| 81 #endif // CHROME_BROWSER_BOOKMARK_DRAG_DATA_ | 81 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_DRAG_DATA_ |
| 82 | |
| OLD | NEW |