OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_EXTENSION_HELPERS_H_ | 5 #ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_EXTENSION_HELPERS_H_ |
6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_EXTENSION_HELPERS_H_ | 6 #define CHROME_BROWSER_BOOKMARKS_BOOKMARK_EXTENSION_HELPERS_H_ |
7 #pragma once | |
8 | 7 |
9 #include <string> | 8 #include <string> |
10 | 9 |
11 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
12 | 11 |
13 class BookmarkModel; | 12 class BookmarkModel; |
14 class BookmarkNode; | 13 class BookmarkNode; |
15 | 14 |
16 namespace base { | 15 namespace base { |
17 class DictionaryValue; | 16 class DictionaryValue; |
(...skipping 16 matching lines...) Expand all Loading... |
34 bool recurse); | 33 bool recurse); |
35 | 34 |
36 bool RemoveNode(BookmarkModel* model, | 35 bool RemoveNode(BookmarkModel* model, |
37 int64 id, | 36 int64 id, |
38 bool recursive, | 37 bool recursive, |
39 std::string* error); | 38 std::string* error); |
40 | 39 |
41 } // namespace bookmark_extension_helpers | 40 } // namespace bookmark_extension_helpers |
42 | 41 |
43 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_EXTENSION_HELPERS_H_ | 42 #endif // CHROME_BROWSER_BOOKMARKS_BOOKMARK_EXTENSION_HELPERS_H_ |
OLD | NEW |