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

Side by Side Diff: chrome/browser/bookmarks/startup_task_runner_service_factory.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years 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 unified diff | Download patch
« no previous file with comments | « chrome/browser/bookmarks/chrome_bookmark_client.h ('k') | chrome/browser/browser_process.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_BOOKMARKS_STARTUP_TASK_RUNNER_SERVICE_FACTORY_H_ 5 #ifndef CHROME_BROWSER_BOOKMARKS_STARTUP_TASK_RUNNER_SERVICE_FACTORY_H_
6 #define CHROME_BROWSER_BOOKMARKS_STARTUP_TASK_RUNNER_SERVICE_FACTORY_H_ 6 #define CHROME_BROWSER_BOOKMARKS_STARTUP_TASK_RUNNER_SERVICE_FACTORY_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/singleton.h" 9 #include "base/memory/singleton.h"
10 #include "components/keyed_service/content/browser_context_keyed_service_factory .h" 10 #include "components/keyed_service/content/browser_context_keyed_service_factory .h"
11 11
12 class PrefRegistrySyncable;
13 class Profile; 12 class Profile;
14 13
15 namespace bookmarks { 14 namespace bookmarks {
16 class StartupTaskRunnerService; 15 class StartupTaskRunnerService;
17 } 16 }
18 17
19 // Singleton that owns the start-up task runner service. 18 // Singleton that owns the start-up task runner service.
20 class StartupTaskRunnerServiceFactory 19 class StartupTaskRunnerServiceFactory
21 : public BrowserContextKeyedServiceFactory { 20 : public BrowserContextKeyedServiceFactory {
22 public: 21 public:
(...skipping 11 matching lines...) Expand all
34 ~StartupTaskRunnerServiceFactory() override; 33 ~StartupTaskRunnerServiceFactory() override;
35 34
36 // BrowserContextKeyedServiceFactory: 35 // BrowserContextKeyedServiceFactory:
37 KeyedService* BuildServiceInstanceFor( 36 KeyedService* BuildServiceInstanceFor(
38 content::BrowserContext* profile) const override; 37 content::BrowserContext* profile) const override;
39 38
40 DISALLOW_COPY_AND_ASSIGN(StartupTaskRunnerServiceFactory); 39 DISALLOW_COPY_AND_ASSIGN(StartupTaskRunnerServiceFactory);
41 }; 40 };
42 41
43 #endif // CHROME_BROWSER_BOOKMARKS_STARTUP_TASK_RUNNER_SERVICE_FACTORY_H_ 42 #endif // CHROME_BROWSER_BOOKMARKS_STARTUP_TASK_RUNNER_SERVICE_FACTORY_H_
OLDNEW
« no previous file with comments | « chrome/browser/bookmarks/chrome_bookmark_client.h ('k') | chrome/browser/browser_process.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698