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 <stdio.h> | 5 #include <stdio.h> |
6 | 6 |
7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
8 #include "base/string16.h" | 8 #include "base/string16.h" |
9 #include "base/string_util.h" | 9 #include "base/string_util.h" |
10 #include "base/time.h" | 10 #include "base/time.h" |
(...skipping 1158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1169 } | 1169 } |
1170 | 1170 |
1171 IN_PROC_BROWSER_TEST_F(OmniboxViewTest, AcceptKeywordBySpace) { | 1171 IN_PROC_BROWSER_TEST_F(OmniboxViewTest, AcceptKeywordBySpace) { |
1172 AcceptKeywordBySpaceTest(); | 1172 AcceptKeywordBySpaceTest(); |
1173 } | 1173 } |
1174 | 1174 |
1175 IN_PROC_BROWSER_TEST_F(OmniboxViewTest, NonSubstitutingKeywordTest) { | 1175 IN_PROC_BROWSER_TEST_F(OmniboxViewTest, NonSubstitutingKeywordTest) { |
1176 NonSubstitutingKeywordTest(); | 1176 NonSubstitutingKeywordTest(); |
1177 } | 1177 } |
1178 | 1178 |
1179 #if defined(OS_MACOSX) | 1179 #if defined(OS_POSIX) |
1180 // Flaky on Mac 10.6 http://crbug.com/84420 | 1180 // Flaky on Mac 10.6, Linux http://crbug.com/84420 |
1181 IN_PROC_BROWSER_TEST_F(OmniboxViewTest, FLAKY_DeleteItem) { | 1181 IN_PROC_BROWSER_TEST_F(OmniboxViewTest, FLAKY_DeleteItem) { |
1182 #else | 1182 #else |
1183 IN_PROC_BROWSER_TEST_F(OmniboxViewTest, DeleteItem) { | 1183 IN_PROC_BROWSER_TEST_F(OmniboxViewTest, DeleteItem) { |
1184 #endif | 1184 #endif |
1185 DeleteItemTest(); | 1185 DeleteItemTest(); |
1186 } | 1186 } |
1187 | 1187 |
1188 IN_PROC_BROWSER_TEST_F(OmniboxViewTest, TabMoveCursorToEnd) { | 1188 IN_PROC_BROWSER_TEST_F(OmniboxViewTest, TabMoveCursorToEnd) { |
1189 TabMoveCursorToEndTest(); | 1189 TabMoveCursorToEndTest(); |
1190 } | 1190 } |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1398 PersistKeywordModeOnTabSwitch) { | 1398 PersistKeywordModeOnTabSwitch) { |
1399 PersistKeywordModeOnTabSwitch(); | 1399 PersistKeywordModeOnTabSwitch(); |
1400 } | 1400 } |
1401 | 1401 |
1402 IN_PROC_BROWSER_TEST_F(OmniboxViewViewsTest, | 1402 IN_PROC_BROWSER_TEST_F(OmniboxViewViewsTest, |
1403 CtrlKeyPressedWithInlineAutocompleteTest) { | 1403 CtrlKeyPressedWithInlineAutocompleteTest) { |
1404 CtrlKeyPressedWithInlineAutocompleteTest(); | 1404 CtrlKeyPressedWithInlineAutocompleteTest(); |
1405 } | 1405 } |
1406 | 1406 |
1407 #endif | 1407 #endif |
OLD | NEW |