| Index: base/win/object_watcher.cc
|
| ===================================================================
|
| --- base/win/object_watcher.cc (revision 143465)
|
| +++ base/win/object_watcher.cc (working copy)
|
| @@ -5,7 +5,6 @@
|
| #include "base/win/object_watcher.h"
|
|
|
| #include "base/bind.h"
|
| -#include "base/debug/alias.h"
|
| #include "base/logging.h"
|
|
|
| namespace base {
|
| @@ -41,7 +40,6 @@
|
| delegate);
|
| object_ = object;
|
| origin_loop_ = MessageLoop::current();
|
| - stack_trace_ = base::debug::StackTrace();
|
|
|
| if (!RegisterWaitForSingleObject(&wait_object_, object, DoneWaiting,
|
| this, INFINITE, wait_flags)) {
|
| @@ -99,10 +97,6 @@
|
| // StartWatching(). As a result, we save any state we need and clear previous
|
| // watcher state before signaling the delegate.
|
| HANDLE object = object_;
|
| - // Alias the stack trace where the watch was started so it'll be available in
|
| - // minidumps.
|
| - base::debug::StackTrace stack_trace = stack_trace_;
|
| - base::debug::Alias(&stack_trace);
|
| StopWatching();
|
| delegate->OnObjectSignaled(object);
|
| }
|
|
|