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

Unified Diff: chrome/browser/extensions/extension_bookmarks_module_constants.h

Issue 8374023: Move bookmarks extension api implementation to bookmarks dir (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix deps, rebase Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_bookmarks_module_constants.h
diff --git a/chrome/browser/extensions/extension_bookmarks_module_constants.h b/chrome/browser/extensions/extension_bookmarks_module_constants.h
deleted file mode 100644
index d20b12208fdad2f984d94f1e059aaa07c3e8231c..0000000000000000000000000000000000000000
--- a/chrome/browser/extensions/extension_bookmarks_module_constants.h
+++ /dev/null
@@ -1,55 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Constants used to for the Bookmarks API.
-
-#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_BOOKMARKS_MODULE_CONSTANTS_H_
-#define CHROME_BROWSER_EXTENSIONS_EXTENSION_BOOKMARKS_MODULE_CONSTANTS_H_
-#pragma once
-
-namespace extension_bookmarks_module_constants {
-
-// Keys.
-extern const char kIdKey[];
-extern const char kIndexKey[];
-extern const char kParentIdKey[];
-extern const char kOldIndexKey[];
-extern const char kOldParentIdKey[];
-extern const char kUrlKey[];
-extern const char kTitleKey[];
-extern const char kChildrenKey[];
-extern const char kChildIdsKey[];
-extern const char kRecursiveKey[];
-extern const char kDateAddedKey[];
-extern const char kDateFolderModifiedKey[];
-// TODO(arv): Move bookmark manager related constants out of this file.
-extern const char kSameProfileKey[];
-extern const char kElementsKey[];
-
-// Errors.
-extern const char kNoNodeError[];
-extern const char kNoParentError[];
-extern const char kFolderNotEmptyError[];
-extern const char kInvalidIdError[];
-extern const char kInvalidIndexError[];
-extern const char kInvalidUrlError[];
-extern const char kModifySpecialError[];
-extern const char kEditBookmarksDisabled[];
-
-// Events.
-extern const char kOnBookmarkCreated[];
-extern const char kOnBookmarkRemoved[];
-extern const char kOnBookmarkChanged[];
-extern const char kOnBookmarkMoved[];
-extern const char kOnBookmarkChildrenReordered[];
-extern const char kOnBookmarkImportBegan[];
-extern const char kOnBookmarkImportEnded[];
-// TODO(arv): Move bookmark manager related constants out of this file.
-extern const char kOnBookmarkDragEnter[];
-extern const char kOnBookmarkDragLeave[];
-extern const char kOnBookmarkDrop[];
-
-}; // namespace extension_bookmarks_module_constants
-
-#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_BOOKMARKS_MODULE_CONSTANTS_H_

Powered by Google App Engine
This is Rietveld 408576698