OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_BOOKMARKS_BOOKMARK_EDITOR_H_ | 5 #ifndef CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_EDITOR_H_ |
6 #define CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_EDITOR_H_ | 6 #define CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_EDITOR_H_ |
7 | 7 |
8 #include <utility> | 8 #include <utility> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
12 #include "components/bookmarks/core/browser/bookmark_model.h" | 12 #include "components/bookmarks/browser/bookmark_model.h" |
13 #include "ui/gfx/native_widget_types.h" | 13 #include "ui/gfx/native_widget_types.h" |
14 | 14 |
15 class GURL; | 15 class GURL; |
16 class Profile; | 16 class Profile; |
17 | 17 |
18 // Small, cross platform interface that shows the correct platform specific | 18 // Small, cross platform interface that shows the correct platform specific |
19 // bookmark editor dialog. | 19 // bookmark editor dialog. |
20 class BookmarkEditor { | 20 class BookmarkEditor { |
21 public: | 21 public: |
22 // An enumeration of the possible configurations offered. | 22 // An enumeration of the possible configurations offered. |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 // created. Otherwise the return value is identically |node|. | 120 // created. Otherwise the return value is identically |node|. |
121 static const BookmarkNode* ApplyEditsWithPossibleFolderChange( | 121 static const BookmarkNode* ApplyEditsWithPossibleFolderChange( |
122 BookmarkModel* model, | 122 BookmarkModel* model, |
123 const BookmarkNode* new_parent, | 123 const BookmarkNode* new_parent, |
124 const EditDetails& details, | 124 const EditDetails& details, |
125 const base::string16& new_title, | 125 const base::string16& new_title, |
126 const GURL& new_url); | 126 const GURL& new_url); |
127 }; | 127 }; |
128 | 128 |
129 #endif // CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_EDITOR_H_ | 129 #endif // CHROME_BROWSER_UI_BOOKMARKS_BOOKMARK_EDITOR_H_ |
OLD | NEW |