| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 <stddef.h> | 5 #include <stddef.h> |
| 6 | 6 |
| 7 #include <sstream> | 7 #include <sstream> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 } | 178 } |
| 179 | 179 |
| 180 IN_PROC_BROWSER_TEST_F(PasswordsPrivateApiTest, RemovePasswordException) { | 180 IN_PROC_BROWSER_TEST_F(PasswordsPrivateApiTest, RemovePasswordException) { |
| 181 EXPECT_TRUE(RunPasswordsSubtest("removePasswordException")) << message_; | 181 EXPECT_TRUE(RunPasswordsSubtest("removePasswordException")) << message_; |
| 182 } | 182 } |
| 183 | 183 |
| 184 IN_PROC_BROWSER_TEST_F(PasswordsPrivateApiTest, RequestPlaintextPassword) { | 184 IN_PROC_BROWSER_TEST_F(PasswordsPrivateApiTest, RequestPlaintextPassword) { |
| 185 EXPECT_TRUE(RunPasswordsSubtest("requestPlaintextPassword")) << message_; | 185 EXPECT_TRUE(RunPasswordsSubtest("requestPlaintextPassword")) << message_; |
| 186 } | 186 } |
| 187 | 187 |
| 188 IN_PROC_BROWSER_TEST_F(PasswordsPrivateApiTest, RequestSavedPasswordList) { |
| 189 EXPECT_TRUE(RunPasswordsSubtest("requestSavedPasswordList")) << message_; |
| 190 } |
| 191 |
| 192 IN_PROC_BROWSER_TEST_F(PasswordsPrivateApiTest, RequestPasswordExceptionList) { |
| 193 EXPECT_TRUE(RunPasswordsSubtest("requestPasswordExceptionList")) << message_; |
| 194 } |
| 195 |
| 188 } // namespace extensions | 196 } // namespace extensions |
| OLD | NEW |