| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 // Constants used to for the Bookmarks API. | 5 // Constants used to for the Bookmarks API. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_BOOKMARKS_MODULE_CONSTANTS_H_ | 7 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_BOOKMARKS_MODULE_CONSTANTS_H_ |
| 8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_BOOKMARKS_MODULE_CONSTANTS_H_ | 8 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_BOOKMARKS_MODULE_CONSTANTS_H_ |
| 9 | 9 |
| 10 namespace extension_bookmarks_module_constants { | 10 namespace extension_bookmarks_module_constants { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 extern const char kInvalidUrlError[]; | 32 extern const char kInvalidUrlError[]; |
| 33 extern const char kModifySpecialError[]; | 33 extern const char kModifySpecialError[]; |
| 34 | 34 |
| 35 // Events. | 35 // Events. |
| 36 extern const char kOnBookmarkCreated[]; | 36 extern const char kOnBookmarkCreated[]; |
| 37 extern const char kOnBookmarkRemoved[]; | 37 extern const char kOnBookmarkRemoved[]; |
| 38 extern const char kOnBookmarkChanged[]; | 38 extern const char kOnBookmarkChanged[]; |
| 39 extern const char kOnBookmarkMoved[]; | 39 extern const char kOnBookmarkMoved[]; |
| 40 extern const char kOnBookmarkChildrenReordered[]; | 40 extern const char kOnBookmarkChildrenReordered[]; |
| 41 | 41 |
| 42 // Function names. | |
| 43 extern const char kGetBookmarksFunction[]; | |
| 44 extern const char kGetBookmarkChildrenFunction[]; | |
| 45 extern const char kGetBookmarkTreeFunction[]; | |
| 46 extern const char kSearchBookmarksFunction[]; | |
| 47 extern const char kRemoveBookmarkFunction[]; | |
| 48 extern const char kRemoveBookmarkTreeFunction[]; | |
| 49 extern const char kCreateBookmarkFunction[]; | |
| 50 extern const char kMoveBookmarkFunction[]; | |
| 51 extern const char kUpdateBookmarkFunction[]; | |
| 52 | |
| 53 }; // namespace extension_bookmarks_module_constants | 42 }; // namespace extension_bookmarks_module_constants |
| 54 | 43 |
| 55 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_BOOKMARKS_MODULE_CONSTANTS_H_ | 44 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_BOOKMARKS_MODULE_CONSTANTS_H_ |
| OLD | NEW |