| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_VIEWS_FRAME_GLASS_BROWSER_FRAME_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_FRAME_GLASS_BROWSER_FRAME_VIEW_H_ |
| 6 #define CHROME_BROWSER_VIEWS_FRAME_GLASS_BROWSER_FRAME_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_FRAME_GLASS_BROWSER_FRAME_VIEW_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/views/frame/browser_frame.h" | 8 #include "chrome/browser/views/frame/browser_frame.h" |
| 9 #include "chrome/views/button.h" |
| 9 #include "chrome/views/non_client_view.h" | 10 #include "chrome/views/non_client_view.h" |
| 10 #include "chrome/views/button.h" | |
| 11 | 11 |
| 12 class BrowserView; | 12 class BrowserView; |
| 13 class GlassBrowserWindowResources; | 13 class GlassBrowserWindowResources; |
| 14 | 14 |
| 15 class GlassBrowserFrameView : public BrowserNonClientFrameView { | 15 class GlassBrowserFrameView : public BrowserNonClientFrameView { |
| 16 public: | 16 public: |
| 17 // Constructs a non-client view for an BrowserFrame. | 17 // Constructs a non-client view for an BrowserFrame. |
| 18 GlassBrowserFrameView(BrowserFrame* frame, BrowserView* browser_view); | 18 GlassBrowserFrameView(BrowserFrame* frame, BrowserView* browser_view); |
| 19 virtual ~GlassBrowserFrameView(); | 19 virtual ~GlassBrowserFrameView(); |
| 20 | 20 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 static GlassBrowserWindowResources* resources_; | 97 static GlassBrowserWindowResources* resources_; |
| 98 | 98 |
| 99 static const int kThrobberIconCount = 24; | 99 static const int kThrobberIconCount = 24; |
| 100 static HICON throbber_icons_[kThrobberIconCount]; | 100 static HICON throbber_icons_[kThrobberIconCount]; |
| 101 static void InitThrobberIcons(); | 101 static void InitThrobberIcons(); |
| 102 | 102 |
| 103 DISALLOW_EVIL_CONSTRUCTORS(GlassBrowserFrameView); | 103 DISALLOW_EVIL_CONSTRUCTORS(GlassBrowserFrameView); |
| 104 }; | 104 }; |
| 105 | 105 |
| 106 #endif // #ifndef CHROME_BROWSER_VIEWS_FRAME_GLASS_BROWSER_FRAME_VIEW_H_ | 106 #endif // #ifndef CHROME_BROWSER_VIEWS_FRAME_GLASS_BROWSER_FRAME_VIEW_H_ |
| OLD | NEW |