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

Side by Side Diff: chrome/common/child_process_info.h

Issue 5981007: fix about:memory and memory histograms to show extensions more clearly (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: added todo Created 10 years 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_COMMON_CHILD_PROCESS_INFO_H_ 5 #ifndef CHROME_COMMON_CHILD_PROCESS_INFO_H_
6 #define CHROME_COMMON_CHILD_PROCESS_INFO_H_ 6 #define CHROME_COMMON_CHILD_PROCESS_INFO_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 14 matching lines...) Expand all
25 NACL_LOADER_PROCESS, 25 NACL_LOADER_PROCESS,
26 UTILITY_PROCESS, 26 UTILITY_PROCESS,
27 PROFILE_IMPORT_PROCESS, 27 PROFILE_IMPORT_PROCESS,
28 ZYGOTE_PROCESS, 28 ZYGOTE_PROCESS,
29 SANDBOX_HELPER_PROCESS, 29 SANDBOX_HELPER_PROCESS,
30 NACL_BROKER_PROCESS, 30 NACL_BROKER_PROCESS,
31 GPU_PROCESS, 31 GPU_PROCESS,
32 PPAPI_PLUGIN_PROCESS 32 PPAPI_PLUGIN_PROCESS
33 }; 33 };
34 34
35 // NOTE: Do not remove or reorder the elements in this enum, and only add new
36 // items at the end. We depend on these specific values in a histogram.
37 enum RendererProcessType {
38 RENDERER_UNKNOWN = 0,
39 RENDERER_NORMAL,
40 RENDERER_CHROME,
41 RENDERER_EXTENSION,
42 RENDERER_DEVTOOLS,
43 RENDERER_INTERSTITIAL,
44 RENDERER_NOTIFICATION,
45 RENDERER_BACKGROUND_APP
46 };
47
35 ChildProcessInfo(const ChildProcessInfo& original); 48 ChildProcessInfo(const ChildProcessInfo& original);
36 virtual ~ChildProcessInfo(); 49 virtual ~ChildProcessInfo();
37 50
38 ChildProcessInfo& operator=(const ChildProcessInfo& original); 51 ChildProcessInfo& operator=(const ChildProcessInfo& original);
39 52
40 // Returns the type of the process. 53 // Returns the type of the process.
41 ProcessType type() const { return type_; } 54 ProcessType type() const { return type_; }
55 RendererProcessType renderer_type() const { return renderer_type_; }
42 56
43 // Returns the name of the process. i.e. for plugins it might be Flash, while 57 // Returns the name of the process. i.e. for plugins it might be Flash, while
44 // for workers it might be the domain that it's from. 58 // for workers it might be the domain that it's from.
45 std::wstring name() const { return name_; } 59 std::wstring name() const { return name_; }
46 60
47 // Returns the version of the exe, this only appliest to plugins. Otherwise 61 // Returns the version of the exe, this only appliest to plugins. Otherwise
48 // the string is empty. 62 // the string is empty.
49 std::wstring version() const { return version_; } 63 std::wstring version() const { return version_; }
50 64
51 // Getter to the process handle. 65 // Getter to the process handle.
52 base::ProcessHandle handle() const { return process_.handle(); } 66 base::ProcessHandle handle() const { return process_.handle(); }
53 67
54 // The unique identifier for this child process. This identifier is NOT a 68 // The unique identifier for this child process. This identifier is NOT a
55 // process ID, and will be unique for all types of child process for 69 // process ID, and will be unique for all types of child process for
56 // one run of the browser. 70 // one run of the browser.
57 int id() const { return id_; } 71 int id() const { return id_; }
58 72
59 void SetProcessBackgrounded() const { process_.SetProcessBackgrounded(true); } 73 void SetProcessBackgrounded() const { process_.SetProcessBackgrounded(true); }
60 74
61 // Returns an English name of the process type, should only be used for non 75 // Returns an English name of the process type, should only be used for non
62 // user-visible strings, or debugging pages like about:memory. 76 // user-visible strings, or debugging pages like about:memory.
77 static std::string GetFullTypeNameInEnglish(ProcessType type,
78 RendererProcessType rtype);
63 static std::string GetTypeNameInEnglish(ProcessType type); 79 static std::string GetTypeNameInEnglish(ProcessType type);
80 static std::string GetRendererTypeNameInEnglish(RendererProcessType type);
64 81
65 // Returns a localized title for the child process. For example, a plugin 82 // Returns a localized title for the child process. For example, a plugin
66 // process would be "Plug-in: Flash" when name is "Flash". 83 // process would be "Plug-in: Flash" when name is "Flash".
67 string16 GetLocalizedTitle() const; 84 string16 GetLocalizedTitle() const;
68 85
69 // We define the < operator so that the ChildProcessInfo can be used as a key 86 // We define the < operator so that the ChildProcessInfo can be used as a key
70 // in a std::map. 87 // in a std::map.
71 bool operator <(const ChildProcessInfo& rhs) const { 88 bool operator <(const ChildProcessInfo& rhs) const {
72 if (process_.handle() != rhs.process_.handle()) 89 if (process_.handle() != rhs.process_.handle())
73 return process_ .handle() < rhs.process_.handle(); 90 return process_ .handle() < rhs.process_.handle();
(...skipping 18 matching lines...) Expand all
92 static int GenerateChildProcessUniqueId(); 109 static int GenerateChildProcessUniqueId();
93 110
94 protected: 111 protected:
95 // Derived objects need to use this constructor so we know what type we are. 112 // Derived objects need to use this constructor so we know what type we are.
96 // If the caller has already generated a unique ID for this child process, 113 // If the caller has already generated a unique ID for this child process,
97 // it should pass it as the second argument. Otherwise, -1 should be passed 114 // it should pass it as the second argument. Otherwise, -1 should be passed
98 // and a unique ID will be automatically generated. 115 // and a unique ID will be automatically generated.
99 ChildProcessInfo(ProcessType type, int id); 116 ChildProcessInfo(ProcessType type, int id);
100 117
101 void set_type(ProcessType type) { type_ = type; } 118 void set_type(ProcessType type) { type_ = type; }
119 void set_renderer_type(RendererProcessType type) { renderer_type_ = type; }
102 void set_name(const std::wstring& name) { name_ = name; } 120 void set_name(const std::wstring& name) { name_ = name; }
103 void set_version(const std::wstring& ver) { version_ = ver; } 121 void set_version(const std::wstring& ver) { version_ = ver; }
104 void set_handle(base::ProcessHandle handle) { process_.set_handle(handle); } 122 void set_handle(base::ProcessHandle handle) { process_.set_handle(handle); }
105 123
106 private: 124 private:
107 ProcessType type_; 125 ProcessType type_;
126 RendererProcessType renderer_type_;
108 std::wstring name_; 127 std::wstring name_;
109 std::wstring version_; 128 std::wstring version_;
110 int id_; 129 int id_;
111 130
112 // The handle to the process. 131 // The handle to the process.
113 mutable base::Process process_; 132 mutable base::Process process_;
114 }; 133 };
115 134
116 #endif // CHROME_COMMON_CHILD_PROCESS_INFO_H_ 135 #endif // CHROME_COMMON_CHILD_PROCESS_INFO_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698