Add an exponential backoff to rechecking the app list doodle.
[chromium-blink-merge.git] / components / webdata_services / web_data_service_wrapper.h
blobd189e837141492324ea659e6afe8d6d06b885eb8
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_WEBDATA_SERVICES_WEB_DATA_SERVICE_WRAPPER_H_
6 #define COMPONENTS_WEBDATA_SERVICES_WEB_DATA_SERVICE_WRAPPER_H_
8 #include <string>
10 #include "base/callback_forward.h"
11 #include "base/macros.h"
12 #include "base/memory/ref_counted.h"
13 #include "components/keyed_service/core/keyed_service.h"
14 #include "sql/init_status.h"
15 #include "sync/api/syncable_service.h"
17 class KeywordWebDataService;
18 class TokenWebData;
19 class WebDatabaseService;
21 #if defined(OS_WIN)
22 class PasswordWebDataService;
23 #endif
25 namespace autofill {
26 class AutofillWebDataBackend;
27 class AutofillWebDataService;
28 } // namespace autofill
30 namespace base {
31 class FilePath;
32 class MessageLoopProxy;
33 } // namespace base
35 // WebDataServiceWrapper is a KeyedService that owns multiple WebDataServices
36 // so that they can be associated with a context.
37 class WebDataServiceWrapper : public KeyedService {
38 public:
39 // ErrorType indicates which service encountered an error loading its data.
40 enum ErrorType {
41 ERROR_LOADING_AUTOFILL,
42 ERROR_LOADING_KEYWORD,
43 ERROR_LOADING_TOKEN,
44 ERROR_LOADING_PASSWORD,
47 // Shows an error message if a loading error occurs.
48 using ShowErrorCallback = void (*)(ErrorType, sql::InitStatus);
50 // Constructor for WebDataServiceWrapper that initializes the different
51 // WebDataServices and starts the synchronization services using |flare|.
52 // Since |flare| will be copied and called multiple times, it cannot bind
53 // values using base::Owned nor base::Passed; it should only bind simple or
54 // refcounted types.
55 WebDataServiceWrapper(const base::FilePath& context_path,
56 const std::string& application_locale,
57 const scoped_refptr<base::MessageLoopProxy>& ui_thread,
58 const scoped_refptr<base::MessageLoopProxy>& db_thread,
59 const syncer::SyncableService::StartSyncFlare& flare,
60 ShowErrorCallback show_error_callback);
61 ~WebDataServiceWrapper() override;
63 // For testing.
64 WebDataServiceWrapper();
66 // KeyedService:
67 void Shutdown() override;
69 // Create the various types of service instances. These methods are virtual
70 // for testing purpose.
71 virtual scoped_refptr<autofill::AutofillWebDataService> GetAutofillWebData();
72 virtual scoped_refptr<KeywordWebDataService> GetKeywordWebData();
73 virtual scoped_refptr<TokenWebData> GetTokenWebData();
74 #if defined(OS_WIN)
75 virtual scoped_refptr<PasswordWebDataService> GetPasswordWebData();
76 #endif
78 private:
79 scoped_refptr<WebDatabaseService> web_database_;
81 scoped_refptr<autofill::AutofillWebDataService> autofill_web_data_;
82 scoped_refptr<KeywordWebDataService> keyword_web_data_;
83 scoped_refptr<TokenWebData> token_web_data_;
85 #if defined(OS_WIN)
86 scoped_refptr<PasswordWebDataService> password_web_data_;
87 #endif
89 DISALLOW_COPY_AND_ASSIGN(WebDataServiceWrapper);
92 #endif // COMPONENTS_WEBDATA_SERVICES_WEB_DATA_SERVICE_WRAPPER_H_