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

Unified Diff: ios/clean/chrome/browser/ui/overlay_service/overlay_service_factory.h

Issue 2921833002: [iOS Clean] Created OverlayService.
Patch Set: rebase & Mark's comments Created 3 years, 6 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: ios/clean/chrome/browser/ui/overlay_service/overlay_service_factory.h
diff --git a/ios/clean/chrome/browser/ui/overlay_service/overlay_service_factory.h b/ios/clean/chrome/browser/ui/overlay_service/overlay_service_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..07795b17e937b931c5fcf924faa2f756ba4090d6
--- /dev/null
+++ b/ios/clean/chrome/browser/ui/overlay_service/overlay_service_factory.h
@@ -0,0 +1,44 @@
+// Copyright 2017 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 IOS_CLEAN_CHROME_BROWSER_UI_OVERLAYS_OVERLAY_SERVICE_FACTORY_H_
+#define IOS_CLEAN_CHROME_BROWSER_UI_OVERLAYS_OVERLAY_SERVICE_FACTORY_H_
+
+#include "base/macros.h"
+#include "components/keyed_service/ios/browser_state_keyed_service_factory.h"
+
+namespace base {
+template <typename T>
+struct DefaultSingletonTraits;
+}
+
+namespace ios {
+class ChromeBrowserState;
+}
+
+class OverlayService;
+
+// OverlayServiceFactory attaches OverlayServices to ChromeBrowserStates.
+class OverlayServiceFactory : public BrowserStateKeyedServiceFactory {
+ public:
+ // Convenience getter that typecasts the value returned to OverlayService.
+ static OverlayService* GetForBrowserState(
+ ios::ChromeBrowserState* browser_state);
+ // Getter for singleton instance.
+ static OverlayServiceFactory* GetInstance();
+
+ private:
+ friend struct base::DefaultSingletonTraits<OverlayServiceFactory>;
+
+ OverlayServiceFactory();
+ ~OverlayServiceFactory() override;
+
+ // BrowserStateKeyedServiceFactory implementation.
+ std::unique_ptr<KeyedService> BuildServiceInstanceFor(
+ web::BrowserState* context) const override;
+
+ DISALLOW_COPY_AND_ASSIGN(OverlayServiceFactory);
+};
+
+#endif // IOS_CLEAN_CHROME_BROWSER_UI_OVERLAYS_OVERLAY_SERVICE_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698