| Index: base/debug/trace_event_impl.h
|
| diff --git a/base/debug/trace_event_impl.h b/base/debug/trace_event_impl.h
|
| index 60323b44ff4956f2a036a7a2b833577dc54b2f67..dc7b59f331a013ce1e4bf90114b9074adc5d1de0 100644
|
| --- a/base/debug/trace_event_impl.h
|
| +++ b/base/debug/trace_event_impl.h
|
| @@ -248,13 +248,6 @@ class BASE_EXPORT TraceLog {
|
| const void* id,
|
| const std::string& extra);
|
|
|
| - // Mangle |ptr| with a hash based on the process ID so that if |ptr| occurs on
|
| - // more than one process, it will not collide.
|
| - unsigned long long GetInterProcessID(void* ptr) const {
|
| - return static_cast<unsigned long long>(reinterpret_cast<uintptr_t>(ptr)) ^
|
| - process_id_hash_;
|
| - }
|
| -
|
| int process_id() const { return process_id_; }
|
|
|
| // Exposed for unittesting:
|
|
|