OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #import "chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_editor.h" | 5 #import "chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_editor.h" |
6 | 6 |
7 #include "base/mac/sdk_forward_declarations.h" | 7 #include "base/mac/sdk_forward_declarations.h" |
8 #include "base/strings/string_util.h" | 8 #include "base/strings/string_util.h" |
9 #include "base/strings/sys_string_conversions.h" | 9 #include "base/strings/sys_string_conversions.h" |
10 #include "chrome/app/chrome_command_ids.h" // IDC_* | 10 #include "chrome/app/chrome_command_ids.h" // IDC_* |
11 #include "chrome/browser/themes/theme_service.h" | 11 #include "chrome/browser/themes/theme_service.h" |
12 #include "chrome/browser/ui/browser_list.h" | 12 #include "chrome/browser/ui/browser_list.h" |
13 #import "chrome/browser/ui/cocoa/browser_window_controller.h" | 13 #import "chrome/browser/ui/cocoa/browser_window_controller.h" |
14 #include "chrome/browser/ui/cocoa/l10n_util.h" | |
Sidney San Martín
2016/12/21 22:52:03
Still needed?
lgrey
2016/12/28 17:28:42
Done.
| |
14 #import "chrome/browser/ui/cocoa/location_bar/autocomplete_text_field.h" | 15 #import "chrome/browser/ui/cocoa/location_bar/autocomplete_text_field.h" |
15 #import "chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell.h" | 16 #import "chrome/browser/ui/cocoa/location_bar/autocomplete_text_field_cell.h" |
16 #import "chrome/browser/ui/cocoa/toolbar/toolbar_controller.h" | 17 #import "chrome/browser/ui/cocoa/toolbar/toolbar_controller.h" |
17 #include "chrome/grit/generated_resources.h" | 18 #include "chrome/grit/generated_resources.h" |
18 #import "ui/base/cocoa/find_pasteboard.h" | 19 #import "ui/base/cocoa/find_pasteboard.h" |
19 #import "ui/base/cocoa/touch_bar_forward_declarations.h" | 20 #import "ui/base/cocoa/touch_bar_forward_declarations.h" |
20 #include "ui/base/l10n/l10n_util_mac.h" | 21 #include "ui/base/l10n/l10n_util_mac.h" |
21 #include "ui/base/material_design/material_design_controller.h" | 22 #include "ui/base/material_design/material_design_controller.h" |
22 | 23 |
23 namespace { | 24 namespace { |
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
624 // ThemedWindowDrawing implementation. | 625 // ThemedWindowDrawing implementation. |
625 | 626 |
626 - (void)windowDidChangeTheme { | 627 - (void)windowDidChangeTheme { |
627 [self updateColorsToMatchTheme]; | 628 [self updateColorsToMatchTheme]; |
628 } | 629 } |
629 | 630 |
630 - (void)windowDidChangeActive { | 631 - (void)windowDidChangeActive { |
631 } | 632 } |
632 | 633 |
633 @end | 634 @end |
OLD | NEW |