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

Side by Side Diff: chrome/browser/ui/chrome_bubble_manager_factory.cc

Issue 1251633002: Add BubbleManager to manage bubbles and ChromeBubbleManager for events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Partial Feedback Created 5 years, 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 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.
4
5 #include "chrome/browser/ui/chrome_bubble_manager_factory.h"
6
7 #include "chrome/browser/ui/chrome_bubble_manager.h"
8 #include "components/keyed_service/content/browser_context_dependency_manager.h"
9
10 // static
11 ChromeBubbleManager* ChromeBubbleManagerFactory::GetForBrowserContext(
12 content::BrowserContext* context) {
13 return static_cast<ChromeBubbleManager*>(
14 GetInstance()->GetServiceForBrowserContext(context, true));
15 }
16
17 // static
18 ChromeBubbleManagerFactory* ChromeBubbleManagerFactory::GetInstance() {
19 return Singleton<ChromeBubbleManagerFactory>::get();
20 }
21
22 ChromeBubbleManagerFactory::ChromeBubbleManagerFactory()
23 : BrowserContextKeyedServiceFactory(
24 "ChromeBubbleManager",
25 BrowserContextDependencyManager::GetInstance()) {
26 }
27
28 ChromeBubbleManagerFactory::~ChromeBubbleManagerFactory() {
29 }
30
31 KeyedService* ChromeBubbleManagerFactory::BuildServiceInstanceFor(
32 content::BrowserContext* context) const {
33 return new ChromeBubbleManager();
34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698