| 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 30 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 // Function names. | 42 // Function names. |
| 43 extern const char kGetBookmarksFunction[]; | 43 extern const char kGetBookmarksFunction[]; |
| 44 extern const char kGetBookmarkChildrenFunction[]; | 44 extern const char kGetBookmarkChildrenFunction[]; |
| 45 extern const char kGetBookmarkTreeFunction[]; | 45 extern const char kGetBookmarkTreeFunction[]; |
| 46 extern const char kSearchBookmarksFunction[]; | 46 extern const char kSearchBookmarksFunction[]; |
| 47 extern const char kRemoveBookmarkFunction[]; | 47 extern const char kRemoveBookmarkFunction[]; |
| 48 extern const char kRemoveBookmarkTreeFunction[]; | 48 extern const char kRemoveBookmarkTreeFunction[]; |
| 49 extern const char kCreateBookmarkFunction[]; | 49 extern const char kCreateBookmarkFunction[]; |
| 50 extern const char kMoveBookmarkFunction[]; | 50 extern const char kMoveBookmarkFunction[]; |
| 51 extern const char kSetBookmarkTitleFunction[]; | 51 extern const char kUpdateBookmarkFunction[]; |
| 52 | 52 |
| 53 }; // namespace extension_bookmarks_module_constants | 53 }; // namespace extension_bookmarks_module_constants |
| 54 | 54 |
| 55 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_BOOKMARKS_MODULE_CONSTANTS_H_ | 55 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_BOOKMARKS_MODULE_CONSTANTS_H_ |
| OLD | NEW |