Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2013 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_VIEWS_FRAME_BROWSER_FRAME_ASH_WIN_H_ | |
|
sky
2013/11/14 15:28:42
I think you should go with ashwin, like we have au
tapted
2013/11/15 12:47:11
Done. (true - this was abusing that "win" \implies
| |
| 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_FRAME_ASH_WIN_H_ | |
| 7 | |
| 8 #include "chrome/browser/ui/views/frame/browser_frame_ash.h" | |
| 9 | |
| 10 // A NativeWidgetAura subclass that provides Windows-specific behavior on the | |
| 11 // Ash desktop for Metro mode. | |
| 12 class BrowserFrameAshWin : public BrowserFrameAsh { | |
| 13 public: | |
| 14 BrowserFrameAshWin(BrowserFrame* browser_frame, BrowserView* browser_view); | |
| 15 | |
| 16 protected: | |
| 17 virtual ~BrowserFrameAshWin(); | |
| 18 | |
| 19 // Overridden from aura::client::ActivationChangeObserver: | |
| 20 virtual void OnWindowFocused(aura::Window* gained_focus, | |
| 21 aura::Window* lost_focus) OVERRIDE; | |
| 22 private: | |
| 23 DISALLOW_COPY_AND_ASSIGN(BrowserFrameAshWin); | |
| 24 }; | |
| 25 | |
| 26 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_FRAME_ASH_WIN_H_ | |
| OLD | NEW |