Chromium Code Reviews| OLD | NEW |
|---|---|
| (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_ | |
| OLD | NEW |