OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/ui/cocoa/infobars/before_translate_infobar_controller.h
" | 5 #include "chrome/browser/ui/cocoa/infobars/before_translate_infobar_controller.h
" |
6 | 6 |
| 7 #include <stddef.h> |
| 8 |
7 #include "base/strings/sys_string_conversions.h" | 9 #include "base/strings/sys_string_conversions.h" |
8 #import "chrome/browser/ui/cocoa/infobars/infobar_utilities.h" | 10 #import "chrome/browser/ui/cocoa/infobars/infobar_utilities.h" |
9 #include "grit/components_strings.h" | 11 #include "grit/components_strings.h" |
10 #include "ui/base/l10n/l10n_util.h" | 12 #include "ui/base/l10n/l10n_util.h" |
11 | 13 |
12 using InfoBarUtilities::MoveControl; | 14 using InfoBarUtilities::MoveControl; |
13 using InfoBarUtilities::VerifyControlOrderAndSpacing; | 15 using InfoBarUtilities::VerifyControlOrderAndSpacing; |
14 | 16 |
15 namespace { | 17 namespace { |
16 | 18 |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 @implementation BeforeTranslateInfobarController (TestingAPI) | 130 @implementation BeforeTranslateInfobarController (TestingAPI) |
129 | 131 |
130 - (NSButton*)alwaysTranslateButton { | 132 - (NSButton*)alwaysTranslateButton { |
131 return alwaysTranslateButton_.get(); | 133 return alwaysTranslateButton_.get(); |
132 } | 134 } |
133 - (NSButton*)neverTranslateButton { | 135 - (NSButton*)neverTranslateButton { |
134 return neverTranslateButton_.get(); | 136 return neverTranslateButton_.get(); |
135 } | 137 } |
136 | 138 |
137 @end | 139 @end |
OLD | NEW |