| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_UI_VIEWS_BOOKMARKS_BOOKMARK_EDITOR_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_EDITOR_VIEW_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_EDITOR_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_EDITOR_VIEW_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 namespace views { | 28 namespace views { |
| 29 class Label; | 29 class Label; |
| 30 class LabelButton; | 30 class LabelButton; |
| 31 class MenuRunner; | 31 class MenuRunner; |
| 32 class TreeView; | 32 class TreeView; |
| 33 } | 33 } |
| 34 | 34 |
| 35 class BookmarkEditorViewTest; | 35 class BookmarkEditorViewTest; |
| 36 class GURL; | 36 class GURL; |
| 37 class Menu; | |
| 38 class Profile; | 37 class Profile; |
| 39 | 38 |
| 40 // View that allows the user to edit a bookmark/starred URL. The user can | 39 // View that allows the user to edit a bookmark/starred URL. The user can |
| 41 // change the URL, title and where the bookmark appears as well as adding | 40 // change the URL, title and where the bookmark appears as well as adding |
| 42 // new folders and changing the name of other folders. The editor is used for | 41 // new folders and changing the name of other folders. The editor is used for |
| 43 // both editing a url bookmark, as well as editing a folder bookmark when | 42 // both editing a url bookmark, as well as editing a folder bookmark when |
| 44 // created from 'Bookmark all tabs'. | 43 // created from 'Bookmark all tabs'. |
| 45 // | 44 // |
| 46 // Edits are applied to the BookmarkModel when the user presses 'OK'. | 45 // Edits are applied to the BookmarkModel when the user presses 'OK'. |
| 47 // | 46 // |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 // Is the tree shown? | 269 // Is the tree shown? |
| 271 bool show_tree_; | 270 bool show_tree_; |
| 272 | 271 |
| 273 // List of deleted bookmark folders. | 272 // List of deleted bookmark folders. |
| 274 std::vector<int64_t> deletes_; | 273 std::vector<int64_t> deletes_; |
| 275 | 274 |
| 276 DISALLOW_COPY_AND_ASSIGN(BookmarkEditorView); | 275 DISALLOW_COPY_AND_ASSIGN(BookmarkEditorView); |
| 277 }; | 276 }; |
| 278 | 277 |
| 279 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_EDITOR_VIEW_H_ | 278 #endif // CHROME_BROWSER_UI_VIEWS_BOOKMARKS_BOOKMARK_EDITOR_VIEW_H_ |
| OLD | NEW |