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

Unified Diff: chrome/browser/extensions/api/processes/processes_api_constants.h

Issue 1584473004: Migrate ProcessesEventRouter to the new task manager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rearrange some code to make it easier to review. Created 4 years, 10 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/api/processes/processes_api_constants.h
diff --git a/chrome/browser/extensions/api/processes/processes_api_constants.h b/chrome/browser/extensions/api/processes/processes_api_constants.h
deleted file mode 100644
index 5dc8366049e7a2865ed0f00b7f1d3e728705081a..0000000000000000000000000000000000000000
--- a/chrome/browser/extensions/api/processes/processes_api_constants.h
+++ /dev/null
@@ -1,64 +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_API_PROCESSES_PROCESSES_API_CONSTANTS_H_
-#define CHROME_BROWSER_EXTENSIONS_API_PROCESSES_PROCESSES_API_CONSTANTS_H_
-
-namespace extensions {
-
-namespace processes_api_constants {
-
-// Process object properties.
-extern const char kCpuKey[];
-extern const char kCssCacheKey[];
-extern const char kIdKey[];
-extern const char kImageCacheKey[];
-extern const char kJsMemoryAllocatedKey[];
-extern const char kJsMemoryUsedKey[];
-extern const char kNaClDebugPortKey[];
-extern const char kNetworkKey[];
-extern const char kOsProcessIdKey[];
-extern const char kPrivateMemoryKey[];
-extern const char kProfileKey[];
-extern const char kScriptCacheKey[];
-extern const char kSqliteMemoryKey[];
-extern const char kTabsListKey[];
-extern const char kTitleKey[];
-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 kNotAllowedToTerminate[];
-extern const char kProcessNotFound[];
-
-} // namespace processes_api_constants
-
-} // namespace extensions
-
-#endif // CHROME_BROWSER_EXTENSIONS_API_PROCESSES_PROCESSES_API_CONSTANTS_H_

Powered by Google App Engine
This is Rietveld 408576698