OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_BOOKMARKS_BOOKMARK_EDITOR_H_ | 5 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_EDITOR_H_ |
6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_EDITOR_H_ | 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_EDITOR_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | |
10 #include <utility> | 9 #include <utility> |
11 #include <vector> | 10 #include <vector> |
12 | 11 |
13 #include "base/string16.h" | 12 #include "base/string16.h" |
14 #include "gfx/native_widget_types.h" | 13 #include "gfx/native_widget_types.h" |
15 | 14 |
16 class BookmarkNode; | 15 class BookmarkNode; |
17 class GURL; | 16 class GURL; |
18 class Profile; | 17 class Profile; |
19 | 18 |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 // |parent| gives the initial parent to select in the tree for the node. | 68 // |parent| gives the initial parent to select in the tree for the node. |
70 // |parent| is only used if |details.existing_node| is null. | 69 // |parent| is only used if |details.existing_node| is null. |
71 static void Show(gfx::NativeWindow parent_window, | 70 static void Show(gfx::NativeWindow parent_window, |
72 Profile* profile, | 71 Profile* profile, |
73 const BookmarkNode* parent, | 72 const BookmarkNode* parent, |
74 const EditDetails& details, | 73 const EditDetails& details, |
75 Configuration configuration); | 74 Configuration configuration); |
76 }; | 75 }; |
77 | 76 |
78 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_EDITOR_H_ | 77 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_EDITOR_H_ |
OLD | NEW |