| Index: src/log.cc
|
| diff --git a/src/log.cc b/src/log.cc
|
| index 1ce22f8482cd471a02604658d35f48a83508ded5..0c6c4355aad9cff1577b8d262c119c1f593cdeeb 100644
|
| --- a/src/log.cc
|
| +++ b/src/log.cc
|
| @@ -693,7 +693,7 @@ class Ticker: public Sampler {
|
| // Profiler implementation.
|
| //
|
| Profiler::Profiler(Isolate* isolate)
|
| - : base::Thread("v8:Profiler"),
|
| + : base::Thread(Options("v8:Profiler")),
|
| isolate_(isolate),
|
| head_(0),
|
| tail_(0),
|
| @@ -701,8 +701,7 @@ Profiler::Profiler(Isolate* isolate)
|
| buffer_semaphore_(0),
|
| engaged_(false),
|
| running_(false),
|
| - paused_(false) {
|
| -}
|
| + paused_(false) {}
|
|
|
|
|
| void Profiler::Engage() {
|
|
|