| 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 |
| 10 class ChromeBubbleManager : public BubbleManager, |
| 11 public base::SupportsWeakPtr<ChromeBubbleManager> { |
| 12 public: |
| 13 ChromeBubbleManager(); |
| 14 ~ChromeBubbleManager() override; |
| 15 |
| 16 void WindowFullscreenStateChanged(); |
| 17 void TabDeactivated(); |
| 18 void TabDetached(); |
| 19 void NavigationEntryCommitted(); |
| 20 |
| 21 private: |
| 22 DISALLOW_COPY_AND_ASSIGN(ChromeBubbleManager); |
| 23 }; |
| 24 |
| 25 #endif // CHROME_BROWSER_UI_CHROME_BUBBLE_MANAGER_H_ |
| OLD | NEW |