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

Side by Side Diff: chrome/browser/ui/views/bubble/views_bubble_controller.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: Work in Progress Created 5 years, 5 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/views/bubble/views_bubble_controller.h"
6
7 ViewsBubbleController::ViewsBubbleController(BubbleManager* manager,
8 BubbleDelegate* delegate)
9 : BubbleController(manager, delegate) {}
please use gerrit instead 2015/07/22 00:09:36 Why have a separate class for ViewsBubbleControlle
10
11 // Static.
12 scoped_ptr<BubbleController> BubbleController::Create(
13 BubbleManager* manager,
14 BubbleDelegate* delegate) {
15 return make_scoped_ptr(new ViewsBubbleController(manager, delegate));
16 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698