| 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 #include "chrome/browser/extensions/extension_bookmarks_module_constants.h" | 5 #include "chrome/browser/extensions/extension_bookmarks_module_constants.h" |
| 6 | 6 |
| 7 namespace extension_bookmarks_module_constants { | 7 namespace extension_bookmarks_module_constants { |
| 8 | 8 |
| 9 const wchar_t kIdKey[] = L"id"; | 9 const wchar_t kIdKey[] = L"id"; |
| 10 const wchar_t kIndexKey[] = L"index"; | 10 const wchar_t kIndexKey[] = L"index"; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 const char kOnBookmarkChildrenReordered[] = "bookmarks.onChildrenReordered"; | 35 const char kOnBookmarkChildrenReordered[] = "bookmarks.onChildrenReordered"; |
| 36 | 36 |
| 37 const char kGetBookmarksFunction[] = "bookmarks.get"; | 37 const char kGetBookmarksFunction[] = "bookmarks.get"; |
| 38 const char kGetBookmarkChildrenFunction[] = "bookmarks.getChildren"; | 38 const char kGetBookmarkChildrenFunction[] = "bookmarks.getChildren"; |
| 39 const char kGetBookmarkTreeFunction[] = "bookmarks.getTree"; | 39 const char kGetBookmarkTreeFunction[] = "bookmarks.getTree"; |
| 40 const char kSearchBookmarksFunction[] = "bookmarks.search"; | 40 const char kSearchBookmarksFunction[] = "bookmarks.search"; |
| 41 const char kRemoveBookmarkFunction[] = "bookmarks.remove"; | 41 const char kRemoveBookmarkFunction[] = "bookmarks.remove"; |
| 42 const char kRemoveBookmarkTreeFunction[] = "bookmarks.removeTree"; | 42 const char kRemoveBookmarkTreeFunction[] = "bookmarks.removeTree"; |
| 43 const char kCreateBookmarkFunction[] = "bookmarks.create"; | 43 const char kCreateBookmarkFunction[] = "bookmarks.create"; |
| 44 const char kMoveBookmarkFunction[] = "bookmarks.move"; | 44 const char kMoveBookmarkFunction[] = "bookmarks.move"; |
| 45 const char kSetBookmarkTitleFunction[] = "bookmarks.update"; | 45 const char kUpdateBookmarkFunction[] = "bookmarks.update"; |
| 46 | 46 |
| 47 } // namespace extension_bookmarks_module_constants | 47 } // namespace extension_bookmarks_module_constants |
| OLD | NEW |