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

Side by Side Diff: chrome/browser/extensions/api/bookmarks/bookmark_api_constants.h

Issue 330983002: Added option to bookmarkManagerPrivate.getMetaInfo() to get meta info from all bookmarks in a one f… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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
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 #ifndef CHROME_BROWSER_EXTENSIONS_API_BOOKMARKS_BOOKMARK_API_CONSTANTS_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_BOOKMARKS_BOOKMARK_API_CONSTANTS_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_BOOKMARKS_BOOKMARK_API_CONSTANTS_H_ 6 #define CHROME_BROWSER_EXTENSIONS_API_BOOKMARKS_BOOKMARK_API_CONSTANTS_H_
7 7
8 // Constants used for the Bookmarks API. 8 // Constants used for the Bookmarks API.
9 9
10 namespace extensions { 10 namespace extensions {
11 namespace bookmark_api_constants { 11 namespace bookmark_api_constants {
12 12
13 // Keys. 13 // Keys.
14 extern const char kParentIdKey[]; 14 extern const char kParentIdKey[];
15 extern const char kUrlKey[]; 15 extern const char kUrlKey[];
16 extern const char kTitleKey[]; 16 extern const char kTitleKey[];
17 17
18 // Errors. 18 // Errors.
19 extern const char kNoNodeError[]; 19 extern const char kNoNodeError[];
20 extern const char kNoParentError[]; 20 extern const char kNoParentError[];
21 extern const char kFolderNotEmptyError[]; 21 extern const char kFolderNotEmptyError[];
22 extern const char kInvalidIdError[]; 22 extern const char kInvalidIdError[];
23 extern const char kInvalidIndexError[]; 23 extern const char kInvalidIndexError[];
24 extern const char kInvalidUrlError[]; 24 extern const char kInvalidUrlError[];
25 extern const char kModifySpecialError[]; 25 extern const char kModifySpecialError[];
26 extern const char kEditBookmarksDisabled[]; 26 extern const char kEditBookmarksDisabled[];
27 extern const char kModifyManagedError[]; 27 extern const char kModifyManagedError[];
28 extern const char kInvalidParamError[];
28 29
29 } // namespace bookmark_api_constants 30 } // namespace bookmark_api_constants
30 } // namespace extensions 31 } // namespace extensions
31 32
32 #endif // CHROME_BROWSER_EXTENSIONS_API_BOOKMARKS_BOOKMARK_API_CONSTANTS_H_ 33 #endif // CHROME_BROWSER_EXTENSIONS_API_BOOKMARKS_BOOKMARK_API_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698