| 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_OPAQUE_BROWSER_FRAME_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ |
| 6 #define CHROME_BROWSER_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_FRAME_OPAQUE_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/browser/views/tab_icon_view.h" | 9 #include "chrome/browser/views/tab_icon_view.h" |
| 10 #include "chrome/views/controls/button/button.h" | 10 #include "chrome/views/controls/button/button.h" |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 // The accessible name of this view. | 151 // The accessible name of this view. |
| 152 std::wstring accessible_name_; | 152 std::wstring accessible_name_; |
| 153 | 153 |
| 154 static void InitClass(); | 154 static void InitClass(); |
| 155 static void InitAppWindowResources(); | 155 static void InitAppWindowResources(); |
| 156 static SkBitmap* distributor_logo_; | 156 static SkBitmap* distributor_logo_; |
| 157 static views::WindowResources* active_resources_; | 157 static views::WindowResources* active_resources_; |
| 158 static views::WindowResources* inactive_resources_; | 158 static views::WindowResources* inactive_resources_; |
| 159 static views::WindowResources* active_otr_resources_; | 159 static views::WindowResources* active_otr_resources_; |
| 160 static views::WindowResources* inactive_otr_resources_; | 160 static views::WindowResources* inactive_otr_resources_; |
| 161 static ChromeFont title_font_; | 161 static ChromeFont* title_font_; |
| 162 | 162 |
| 163 DISALLOW_EVIL_CONSTRUCTORS(OpaqueBrowserFrameView); | 163 DISALLOW_EVIL_CONSTRUCTORS(OpaqueBrowserFrameView); |
| 164 }; | 164 }; |
| 165 | 165 |
| 166 #endif // #ifndef CHROME_BROWSER_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ | 166 #endif // #ifndef CHROME_BROWSER_VIEWS_FRAME_OPAQUE_BROWSER_FRAME_VIEW_H_ |
| OLD | NEW |