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

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

Issue 10915067: Moving extension_processes_api to api/processes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Attempt to fix linking on android 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_processes_api_constants.h
diff --git a/chrome/browser/extensions/extension_processes_api_constants.h b/chrome/browser/extensions/extension_processes_api_constants.h
deleted file mode 100644
index cc70b1511086816b33567955b632320c989469e8..0000000000000000000000000000000000000000
--- a/chrome/browser/extensions/extension_processes_api_constants.h
+++ /dev/null
@@ -1,59 +0,0 @@
-// Copyright (c) 2012 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 for the Processes API.
-
-#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_PROCESSES_API_CONSTANTS_H_
-#define CHROME_BROWSER_EXTENSIONS_EXTENSION_PROCESSES_API_CONSTANTS_H_
-
-namespace extension_processes_api_constants {
-
-// Process object properties.
-extern const char kCpuKey[];
-extern const char kCssCacheKey[];
-extern const char kFPSKey[];
-extern const char kIdKey[];
-extern const char kImageCacheKey[];
-extern const char kJsMemoryAllocatedKey[];
-extern const char kJsMemoryUsedKey[];
-extern const char kNetworkKey[];
-extern const char kOsProcessIdKey[];
-extern const char kPrivateMemoryKey[];
-extern const char kProcessesKey[];
-extern const char kProfileKey[];
-extern const char kScriptCacheKey[];
-extern const char kSqliteMemoryKey[];
-extern const char kTabsListKey[];
-extern const char kTypeKey[];
-
-// Process types.
-extern const char kProcessTypeBrowser[];
-extern const char kProcessTypeExtension[];
-extern const char kProcessTypeGPU[];
-extern const char kProcessTypeNacl[];
-extern const char kProcessTypeNotification[];
-extern const char kProcessTypeOther[];
-extern const char kProcessTypePlugin[];
-extern const char kProcessTypeRenderer[];
-extern const char kProcessTypeUtility[];
-extern const char kProcessTypeWorker[];
-
-// Cache object properties.
-extern const char kCacheLiveSize[];
-extern const char kCacheSize[];
-
-// Event names.
-extern const char kOnCreated[];
-extern const char kOnExited[];
-extern const char kOnUnresponsive[];
-extern const char kOnUpdated[];
-extern const char kOnUpdatedWithMemory[];
-
-// Error strings.
-extern const char kExtensionNotSupported[];
-extern const char kProcessNotFound[];
-
-}; // namespace extension_processes_api_constants
-
-#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PROCESSES_API_CONSTANTS_H_
« no previous file with comments | « chrome/browser/extensions/extension_processes_api.cc ('k') | chrome/browser/extensions/extension_processes_api_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698