| 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" |
| 11 #include "base/memory/linked_ptr.h" | |
| 12 #include "base/memory/ptr_util.h" | 11 #include "base/memory/ptr_util.h" |
| 13 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
| 14 #include "base/strings/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
| 15 #include "base/values.h" | 14 #include "base/values.h" |
| 16 #include "chrome/browser/extensions/api/passwords_private/passwords_private_dele
gate.h" | 15 #include "chrome/browser/extensions/api/passwords_private/passwords_private_dele
gate.h" |
| 17 #include "chrome/browser/extensions/api/passwords_private/passwords_private_dele
gate_factory.h" | 16 #include "chrome/browser/extensions/api/passwords_private/passwords_private_dele
gate_factory.h" |
| 18 #include "chrome/browser/extensions/api/passwords_private/passwords_private_even
t_router.h" | 17 #include "chrome/browser/extensions/api/passwords_private/passwords_private_even
t_router.h" |
| 19 #include "chrome/browser/extensions/api/passwords_private/passwords_private_even
t_router_factory.h" | 18 #include "chrome/browser/extensions/api/passwords_private/passwords_private_even
t_router_factory.h" |
| 20 #include "chrome/browser/extensions/extension_apitest.h" | 19 #include "chrome/browser/extensions/extension_apitest.h" |
| 21 #include "chrome/common/extensions/api/passwords_private.h" | 20 #include "chrome/common/extensions/api/passwords_private.h" |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 | 202 |
| 204 IN_PROC_BROWSER_TEST_F(PasswordsPrivateApiTest, GetSavedPasswordList) { | 203 IN_PROC_BROWSER_TEST_F(PasswordsPrivateApiTest, GetSavedPasswordList) { |
| 205 EXPECT_TRUE(RunPasswordsSubtest("getSavedPasswordList")) << message_; | 204 EXPECT_TRUE(RunPasswordsSubtest("getSavedPasswordList")) << message_; |
| 206 } | 205 } |
| 207 | 206 |
| 208 IN_PROC_BROWSER_TEST_F(PasswordsPrivateApiTest, GetPasswordExceptionList) { | 207 IN_PROC_BROWSER_TEST_F(PasswordsPrivateApiTest, GetPasswordExceptionList) { |
| 209 EXPECT_TRUE(RunPasswordsSubtest("getPasswordExceptionList")) << message_; | 208 EXPECT_TRUE(RunPasswordsSubtest("getPasswordExceptionList")) << message_; |
| 210 } | 209 } |
| 211 | 210 |
| 212 } // namespace extensions | 211 } // namespace extensions |
| OLD | NEW |