| Index: chrome/browser/ui/panels/panel_browser_view.h
|
| diff --git a/chrome/browser/ui/panels/panel_browser_view.h b/chrome/browser/ui/panels/panel_browser_view.h
|
| index e6b72768512a286b5fd74a22fac50fffd2363ce8..b55453777fa799c0a38244607e3d11096ea1bc13 100644
|
| --- a/chrome/browser/ui/panels/panel_browser_view.h
|
| +++ b/chrome/browser/ui/panels/panel_browser_view.h
|
| @@ -15,6 +15,7 @@
|
|
|
| class Browser;
|
| class Panel;
|
| +class NativePanelTestingWin;
|
| class PanelBrowserFrameView;
|
| namespace ui {
|
| class SlideAnimation;
|
| @@ -23,7 +24,6 @@ class SlideAnimation;
|
| // A browser view that implements Panel specific behavior.
|
| class PanelBrowserView : public BrowserView,
|
| public NativePanel,
|
| - public NativePanelTesting,
|
| public ui::AnimationDelegate {
|
| public:
|
| PanelBrowserView(Browser* browser, Panel* panel, const gfx::Rect& bounds);
|
| @@ -43,6 +43,7 @@ class PanelBrowserView : public BrowserView,
|
| bool OnTitleBarMouseCaptureLost();
|
|
|
| private:
|
| + friend class NativePanelTestingWin;
|
| friend class PanelBrowserViewTest;
|
| FRIEND_TEST_ALL_PREFIXES(PanelBrowserViewTest, CreatePanel);
|
| FRIEND_TEST_ALL_PREFIXES(PanelBrowserViewTest, ShowOrHideSettingsButton);
|
| @@ -90,7 +91,6 @@ class PanelBrowserView : public BrowserView,
|
| virtual bool IsDrawingAttention() const OVERRIDE;
|
| virtual Browser* GetPanelBrowser() const OVERRIDE;
|
| virtual void DestroyPanelBrowser() OVERRIDE;
|
| - virtual NativePanelTesting* GetNativePanelTesting() OVERRIDE;
|
|
|
| // Overridden from AnimationDelegate:
|
| virtual void AnimationProgressed(const ui::Animation* animation) OVERRIDE;
|
|
|