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 #include "chrome/browser/chromeos/frame/layout_mode_button.h" | 5 #include "chrome/browser/chromeos/frame/layout_mode_button.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/utf_string_conversions.h" | 8 #include "base/utf_string_conversions.h" |
9 #include "chrome/browser/chromeos/view_ids.h" | 9 #include "chrome/browser/chromeos/view_ids.h" |
10 #include "chrome/common/chrome_notification_types.h" | 10 #include "chrome/common/chrome_notification_types.h" |
11 #include "content/public/browser/notification_details.h" | 11 #include "content/public/browser/notification_details.h" |
12 #include "content/public/browser/notification_source.h" | 12 #include "content/public/browser/notification_source.h" |
13 #include "grit/generated_resources.h" | 13 #include "grit/generated_resources.h" |
14 #include "grit/theme_resources.h" | 14 #include "grit/theme_resources.h" |
15 #include "third_party/cros_system_api/window_manager/chromeos_wm_ipc_enums.h" | 15 #include "third_party/cros_system_api/window_manager/chromeos_wm_ipc_enums.h" |
16 #include "ui/base/l10n/l10n_util.h" | 16 #include "ui/base/l10n/l10n_util.h" |
17 #include "ui/base/resource/resource_bundle.h" | 17 #include "ui/base/resource/resource_bundle.h" |
18 #include "views/widget/widget.h" | 18 #include "ui/views/widget/widget.h" |
19 | 19 |
20 #if defined(TOOLKIT_USES_GTK) | 20 #if defined(TOOLKIT_USES_GTK) |
21 #include "chrome/browser/chromeos/legacy_window_manager/wm_ipc.h" | 21 #include "chrome/browser/chromeos/legacy_window_manager/wm_ipc.h" |
22 #endif | 22 #endif |
23 | 23 |
24 namespace { | 24 namespace { |
25 const int kHorizontalPaddingPixels = 2; | 25 const int kHorizontalPaddingPixels = 2; |
26 } // namespace | 26 } // namespace |
27 | 27 |
28 namespace chromeos { | 28 namespace chromeos { |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 SetTooltipText( | 103 SetTooltipText( |
104 l10n_util::GetStringUTF16(IDS_STATUSBAR_WINDOW_MAXIMIZE_TOOLTIP)); | 104 l10n_util::GetStringUTF16(IDS_STATUSBAR_WINDOW_MAXIMIZE_TOOLTIP)); |
105 break; | 105 break; |
106 default: | 106 default: |
107 DLOG(WARNING) << "Unknown layout mode " << mode; | 107 DLOG(WARNING) << "Unknown layout mode " << mode; |
108 } | 108 } |
109 #endif | 109 #endif |
110 } | 110 } |
111 | 111 |
112 } // namespace chromeos | 112 } // namespace chromeos |
OLD | NEW |