| Index: content/browser/net/sqlite_persistent_cookie_store.cc
|
| diff --git a/content/browser/net/sqlite_persistent_cookie_store.cc b/content/browser/net/sqlite_persistent_cookie_store.cc
|
| index cb2f98eaab019396bcd34bb07ef9cc775b8bfcb3..b642380ecd8051ec902a028c1a91a389edf88929 100644
|
| --- a/content/browser/net/sqlite_persistent_cookie_store.cc
|
| +++ b/content/browser/net/sqlite_persistent_cookie_store.cc
|
| @@ -21,6 +21,7 @@
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/metrics/field_trial.h"
|
| #include "base/metrics/histogram.h"
|
| +#include "base/profiler/scoped_tracker.h"
|
| #include "base/sequenced_task_runner.h"
|
| #include "base/strings/string_util.h"
|
| #include "base/strings/stringprintf.h"
|
| @@ -507,6 +508,11 @@ void SQLitePersistentCookieStore::Backend::LoadKeyAndNotifyInBackground(
|
| void SQLitePersistentCookieStore::Backend::CompleteLoadForKeyInForeground(
|
| const LoadedCallback& loaded_callback,
|
| bool load_success) {
|
| + // TODO(pkasting): Remove ScopedTracker below once crbug.com/456373 is fixed.
|
| + tracked_objects::ScopedTracker tracking_profile(
|
| + FROM_HERE_WITH_EXPLICIT_FUNCTION(
|
| + "456373 SQLitePersistentCookieStore::Backend::"
|
| + "CompleteLoadForKeyInForeground"));
|
| DCHECK(client_task_runner_->RunsTasksOnCurrentThread());
|
|
|
| Notify(loaded_callback, load_success);
|
|
|