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 "base/command_line.h" | 5 #include "base/command_line.h" |
6 | 6 |
7 #include "chrome/browser/views/frame/browser_view.h" | 7 #include "chrome/browser/views/frame/browser_view.h" |
8 | 8 |
9 #include "base/file_version_info.h" | 9 #include "base/file_version_info.h" |
10 #include "base/time.h" | 10 #include "base/time.h" |
11 #include "chrome/app/chrome_dll_resource.h" | 11 #include "chrome/app/chrome_dll_resource.h" |
12 #include "chrome/app/theme/theme_resources.h" | 12 #include "grit/theme_resources.h" |
13 #include "chrome/browser/app_modal_dialog_queue.h" | 13 #include "chrome/browser/app_modal_dialog_queue.h" |
14 #include "chrome/browser/browser.h" | 14 #include "chrome/browser/browser.h" |
15 #include "chrome/browser/browser_list.h" | 15 #include "chrome/browser/browser_list.h" |
16 #include "chrome/browser/encoding_menu_controller_delegate.h" | 16 #include "chrome/browser/encoding_menu_controller_delegate.h" |
17 #include "chrome/browser/view_ids.h" | 17 #include "chrome/browser/view_ids.h" |
18 #include "chrome/browser/views/about_chrome_view.h" | 18 #include "chrome/browser/views/about_chrome_view.h" |
19 #include "chrome/browser/views/bookmark_bar_view.h" | 19 #include "chrome/browser/views/bookmark_bar_view.h" |
20 #include "chrome/browser/views/bookmark_manager_view.h" | 20 #include "chrome/browser/views/bookmark_manager_view.h" |
21 #include "chrome/browser/views/bug_report_view.h" | 21 #include "chrome/browser/views/bug_report_view.h" |
22 #include "chrome/browser/views/clear_browsing_data.h" | 22 #include "chrome/browser/views/clear_browsing_data.h" |
(...skipping 1478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1501 | 1501 |
1502 // static | 1502 // static |
1503 void BrowserView::InitClass() { | 1503 void BrowserView::InitClass() { |
1504 static bool initialized = false; | 1504 static bool initialized = false; |
1505 if (!initialized) { | 1505 if (!initialized) { |
1506 ResourceBundle& rb = ResourceBundle::GetSharedInstance(); | 1506 ResourceBundle& rb = ResourceBundle::GetSharedInstance(); |
1507 default_favicon_ = *rb.GetBitmapNamed(IDR_DEFAULT_FAVICON); | 1507 default_favicon_ = *rb.GetBitmapNamed(IDR_DEFAULT_FAVICON); |
1508 initialized = true; | 1508 initialized = true; |
1509 } | 1509 } |
1510 } | 1510 } |
OLD | NEW |