Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1377)

Side by Side Diff: chrome/browser/extensions/api/passwords_private/passwords_private_apitest.cc

Issue 1892613006: Add functions to the passwords private api that update the lists. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698