Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(345)

Unified Diff: chrome/browser/profiles/startup_task_runner_service.h

Issue 1165913004: Componentize StartupTaskRunnerService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/profiles/startup_task_runner_service.h
diff --git a/chrome/browser/profiles/startup_task_runner_service.h b/chrome/browser/profiles/startup_task_runner_service.h
deleted file mode 100644
index d8e6b225a80b58c75e7061657ed6ed3000ade6df..0000000000000000000000000000000000000000
--- a/chrome/browser/profiles/startup_task_runner_service.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright (c) 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_PROFILES_STARTUP_TASK_RUNNER_SERVICE_H_
-#define CHROME_BROWSER_PROFILES_STARTUP_TASK_RUNNER_SERVICE_H_
-
-#include "base/basictypes.h"
-#include "base/memory/ref_counted.h"
-#include "base/threading/non_thread_safe.h"
-#include "components/keyed_service/core/keyed_service.h"
-
-class Profile;
-
-namespace base {
-class DeferredSequencedTaskRunner;
-} // namespace base
-
-// This service manages the startup task runners.
-class StartupTaskRunnerService : public base::NonThreadSafe,
- public KeyedService {
- public:
- explicit StartupTaskRunnerService(Profile* profile);
- ~StartupTaskRunnerService() override;
-
- // Returns sequenced task runner where all bookmarks I/O operations are
- // performed.
- // This method should only be called from the UI thread.
- // Note: Using a separate task runner per profile service gives a better
- // management of the sequence in which the task are started in order to avoid
- // congestion during start-up (e.g the caller may decide to start loading the
- // bookmarks only after the history finished).
- scoped_refptr<base::DeferredSequencedTaskRunner> GetBookmarkTaskRunner();
-
- // Starts the task runners that are deferred during start-up.
- void StartDeferredTaskRunners();
-
- private:
- Profile* profile_;
- scoped_refptr<base::DeferredSequencedTaskRunner> bookmark_task_runner_;
-
- DISALLOW_COPY_AND_ASSIGN(StartupTaskRunnerService);
-};
-
-#endif // CHROME_BROWSER_PROFILES_STARTUP_TASK_RUNNER_SERVICE_H_

Powered by Google App Engine
This is Rietveld 408576698