| 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 #include "chrome/browser/bookmarks/bookmark_extension_api_constants.h" | 5 #include "chrome/browser/bookmarks/bookmark_extension_api_constants.h" |
| 6 | 6 |
| 7 namespace bookmark_extension_api_constants { | 7 namespace bookmark_extension_api_constants { |
| 8 | 8 |
| 9 const char kIdKey[] = "id"; | 9 const char kIdKey[] = "id"; |
| 10 const char kIndexKey[] = "index"; | 10 const char kIndexKey[] = "index"; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 const char kModifySpecialError[] = "Can't modify the root bookmark folders."; | 32 const char kModifySpecialError[] = "Can't modify the root bookmark folders."; |
| 33 const char kEditBookmarksDisabled[] = "Bookmark editing is disabled."; | 33 const char kEditBookmarksDisabled[] = "Bookmark editing is disabled."; |
| 34 | 34 |
| 35 const char kOnBookmarkCreated[] = "bookmarks.onCreated"; | 35 const char kOnBookmarkCreated[] = "bookmarks.onCreated"; |
| 36 const char kOnBookmarkRemoved[] = "bookmarks.onRemoved"; | 36 const char kOnBookmarkRemoved[] = "bookmarks.onRemoved"; |
| 37 const char kOnBookmarkChanged[] = "bookmarks.onChanged"; | 37 const char kOnBookmarkChanged[] = "bookmarks.onChanged"; |
| 38 const char kOnBookmarkMoved[] = "bookmarks.onMoved"; | 38 const char kOnBookmarkMoved[] = "bookmarks.onMoved"; |
| 39 const char kOnBookmarkChildrenReordered[] = "bookmarks.onChildrenReordered"; | 39 const char kOnBookmarkChildrenReordered[] = "bookmarks.onChildrenReordered"; |
| 40 const char kOnBookmarkImportBegan[] = "bookmarks.onImportBegan"; | 40 const char kOnBookmarkImportBegan[] = "bookmarks.onImportBegan"; |
| 41 const char kOnBookmarkImportEnded[] = "bookmarks.onImportEnded"; | 41 const char kOnBookmarkImportEnded[] = "bookmarks.onImportEnded"; |
| 42 |
| 42 // TODO(arv): Move bookmark manager related constants out of this file. | 43 // TODO(arv): Move bookmark manager related constants out of this file. |
| 43 const char kOnBookmarkDragEnter[] = | 44 const char kOnBookmarkDragEnter[] = "bookmarkManagerPrivate.onDragEnter"; |
| 44 "experimental.bookmarkManager.onDragEnter"; | 45 const char kOnBookmarkDragLeave[] = "bookmarkManagerPrivate.onDragLeave"; |
| 45 const char kOnBookmarkDragLeave[] = | 46 const char kOnBookmarkDrop[] = "bookmarkManagerPrivate.onDrop"; |
| 46 "experimental.bookmarkManager.onDragLeave"; | |
| 47 const char kOnBookmarkDrop[] = | |
| 48 "experimental.bookmarkManager.onDrop"; | |
| 49 | 47 |
| 50 } // namespace bookmark_extension_api_constants | 48 } // namespace bookmark_extension_api_constants |
| OLD | NEW |