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

Side by Side Diff: chrome/browser/ui/chrome_bubble_manager.h

Issue 1251633002: Add BubbleManager to manage bubbles and ChromeBubbleManager for events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update 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 #ifndef CHROME_BROWSER_UI_CHROME_BUBBLE_MANAGER_H_
6 #define CHROME_BROWSER_UI_CHROME_BUBBLE_MANAGER_H_
7
8 #include "components/bubble/bubble_manager.h"
9 #include "content/public/browser/navigation_details.h"
10
11 namespace content {
12 class WebContents;
13 } // content
14
15 class ChromeBubbleManager : public BubbleManager {
please use gerrit instead 2015/08/05 18:05:25 Can ChromeBubbleManager implement content::WebCont
hcarmona 2015/08/05 18:43:47 Is it possible to observe more than one web conten
16 public:
17 ChromeBubbleManager();
18 ~ChromeBubbleManager() override;
19
20 void ListenToWebContents(content::WebContents* web_contents);
21
22 void FullscreenToggle(content::WebContents* context);
23 void TabBlur(content::WebContents* context);
24 void TabFocus(content::WebContents* context);
25 void TabDetached(content::WebContents* context);
26 void NavigationEntryCommitted(content::WebContents* context,
27 const content::LoadCommittedDetails& details);
28 void WebContentsDestroyed(content::WebContents* context);
29 };
please use gerrit instead 2015/08/05 18:05:25 private: DISALLOW_COPY_AND_ASSIGN(ChromeBubbleMa
hcarmona 2015/08/06 17:43:44 Done.
30
31 #endif // CHROME_BROWSER_UI_CHROME_BUBBLE_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698