Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: chrome/browser/bookmarks/bookmark_extension_api_constants.cc

Issue 10966025: Change bookmarkManager API from experimental to private. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: bookmarkManager->bookmarkManagerPrivate Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/bookmarks/bookmark_extension_helpers.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/bookmarks/bookmark_extension_helpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698