Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Side by Side Diff: chrome/browser/ui/views/bookmarks/bookmark_editor_view.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698