| Index: content/common/child_process_info.h
|
| ===================================================================
|
| --- content/common/child_process_info.h (revision 112384)
|
| +++ content/common/child_process_info.h (working copy)
|
| @@ -49,18 +49,6 @@
|
| // user-visible strings, or debugging pages like about:memory.
|
| static std::string GetTypeNameInEnglish(content::ProcessType type);
|
|
|
| - // We define the < operator so that the ChildProcessInfo can be used as a key
|
| - // in a std::map.
|
| - bool operator <(const ChildProcessInfo& rhs) const {
|
| - if (process_.handle() != rhs.process_.handle())
|
| - return process_ .handle() < rhs.process_.handle();
|
| - return false;
|
| - }
|
| -
|
| - bool operator ==(const ChildProcessInfo& rhs) const {
|
| - return process_.handle() == rhs.process_.handle();
|
| - }
|
| -
|
| // Generates a unique channel name for a child renderer/plugin process.
|
| // The "instance" pointer value is baked into the channel id.
|
| static std::string GenerateRandomChannelID(void* instance);
|
|
|