| 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 #include "chrome/browser/views/frame/aero_glass_non_client_view.h" | 5 #include "chrome/browser/views/frame/aero_glass_non_client_view.h" | 
| 6 | 6 | 
| 7 #include "chrome/app/theme/theme_resources.h" | 7 #include "grit/theme_resources.h" | 
| 8 #include "chrome/browser/views/frame/browser_view.h" | 8 #include "chrome/browser/views/frame/browser_view.h" | 
| 9 #include "chrome/browser/views/tabs/tab_strip.h" | 9 #include "chrome/browser/views/tabs/tab_strip.h" | 
| 10 #include "chrome/common/resource_bundle.h" | 10 #include "chrome/common/resource_bundle.h" | 
| 11 #include "chrome/views/client_view.h" | 11 #include "chrome/views/client_view.h" | 
| 12 #include "chrome/views/window_resources.h" | 12 #include "chrome/views/window_resources.h" | 
| 13 | 13 | 
| 14 // An enumeration of bitmap resources used by this window. | 14 // An enumeration of bitmap resources used by this window. | 
| 15 enum { | 15 enum { | 
| 16   FRAME_PART_BITMAP_FIRST = 0,  // must be first. | 16   FRAME_PART_BITMAP_FIRST = 0,  // must be first. | 
| 17 | 17 | 
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 355 | 355 | 
| 356     ResourceBundle& rb = ResourceBundle::GetSharedInstance(); | 356     ResourceBundle& rb = ResourceBundle::GetSharedInstance(); | 
| 357 #if defined(GOOGLE_CHROME_BUILD) | 357 #if defined(GOOGLE_CHROME_BUILD) | 
| 358     distributor_logo_ = *rb.GetBitmapNamed(IDR_DISTRIBUTOR_LOGO); | 358     distributor_logo_ = *rb.GetBitmapNamed(IDR_DISTRIBUTOR_LOGO); | 
| 359 #endif | 359 #endif | 
| 360 | 360 | 
| 361     initialized = true; | 361     initialized = true; | 
| 362   } | 362   } | 
| 363 } | 363 } | 
| 364 | 364 | 
| OLD | NEW | 
|---|