| 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 <windows.h> | 5 #include <windows.h> |
| 6 #include <shlobj.h> | 6 #include <shlobj.h> |
| 7 #include <vsstyle.h> | 7 #include <vsstyle.h> |
| 8 #include <vssym32.h> | 8 #include <vssym32.h> |
| 9 | 9 |
| 10 #include "chrome/browser/views/options/content_page_view.h" | 10 #include "chrome/browser/views/options/content_page_view.h" |
| 11 | 11 |
| 12 #include "base/file_util.h" | 12 #include "base/file_util.h" |
| 13 #include "base/gfx/native_theme.h" | 13 #include "base/gfx/native_theme.h" |
| 14 #include "chrome/app/theme/theme_resources.h" | 14 #include "grit/theme_resources.h" |
| 15 #include "chrome/browser/browser_process.h" | 15 #include "chrome/browser/browser_process.h" |
| 16 #include "chrome/browser/shell_dialogs.h" | 16 #include "chrome/browser/shell_dialogs.h" |
| 17 #include "chrome/browser/views/options/fonts_languages_window_view.h" | 17 #include "chrome/browser/views/options/fonts_languages_window_view.h" |
| 18 #include "chrome/browser/views/options/options_group_view.h" | 18 #include "chrome/browser/views/options/options_group_view.h" |
| 19 #include "chrome/browser/views/password_manager_view.h" | 19 #include "chrome/browser/views/password_manager_view.h" |
| 20 #include "chrome/browser/views/password_manager_exceptions_view.h" | 20 #include "chrome/browser/views/password_manager_exceptions_view.h" |
| 21 #include "chrome/browser/views/standard_layout.h" | 21 #include "chrome/browser/views/standard_layout.h" |
| 22 #include "chrome/common/gfx/chrome_canvas.h" | 22 #include "chrome/common/gfx/chrome_canvas.h" |
| 23 #include "chrome/common/l10n_util.h" | 23 #include "chrome/common/l10n_util.h" |
| 24 #include "chrome/common/pref_names.h" | 24 #include "chrome/common/pref_names.h" |
| (...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 contents, | 497 contents, |
| 498 l10n_util::GetString(IDS_OPTIONS_FONTSANDLANGUAGES_GROUP_NAME), | 498 l10n_util::GetString(IDS_OPTIONS_FONTSANDLANGUAGES_GROUP_NAME), |
| 499 L"", true); | 499 L"", true); |
| 500 } | 500 } |
| 501 | 501 |
| 502 void ContentPageView::UpdateDownloadDirectoryDisplay() { | 502 void ContentPageView::UpdateDownloadDirectoryDisplay() { |
| 503 download_default_download_location_display_->SetFile( | 503 download_default_download_location_display_->SetFile( |
| 504 default_download_location_.GetValue()); | 504 default_download_location_.GetValue()); |
| 505 } | 505 } |
| 506 | 506 |
| OLD | NEW |