| Index: chrome/browser/after_startup_task_utils.cc
|
| diff --git a/chrome/browser/after_startup_task_utils.cc b/chrome/browser/after_startup_task_utils.cc
|
| index f61fec8c450333628063b962b0be1ee6bc1b65dd..1a95c6f1ed4efaa0836074268cc8872d9f03bcbc 100644
|
| --- a/chrome/browser/after_startup_task_utils.cc
|
| +++ b/chrome/browser/after_startup_task_utils.cc
|
| @@ -13,7 +13,7 @@
|
| #include "base/metrics/histogram_macros.h"
|
| #include "base/process/process_info.h"
|
| #include "base/rand_util.h"
|
| -#include "base/synchronization/cancellation_flag.h"
|
| +#include "base/synchronization/atomic_flag.h"
|
| #include "base/task_runner.h"
|
| #include "base/tracked_objects.h"
|
| #include "build/build_config.h"
|
| @@ -28,7 +28,7 @@
|
| using content::BrowserThread;
|
| using content::WebContents;
|
| using content::WebContentsObserver;
|
| -using StartupCompleteFlag = base::CancellationFlag;
|
| +using StartupCompleteFlag = base::AtomicFlag;
|
|
|
| namespace {
|
|
|
|
|