OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef COMPONENTS_PASSWORD_MANAGER_CONTENT_RENDERER_TEST_CREDENTIAL_MANAGER_CLI
ENT_H_ |
| 6 #define COMPONENTS_PASSWORD_MANAGER_CONTENT_RENDERER_TEST_CREDENTIAL_MANAGER_CLI
ENT_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" |
| 10 #include "components/password_manager/content/renderer/credential_manager_client
.h" |
| 11 |
| 12 namespace password_manager { |
| 13 |
| 14 class TestCredentialManagerClient : public CredentialManagerClient { |
| 15 public: |
| 16 TestCredentialManagerClient(); |
| 17 virtual ~TestCredentialManagerClient(); |
| 18 |
| 19 virtual int GetRoutingID() OVERRIDE; |
| 20 |
| 21 private: |
| 22 DISALLOW_COPY_AND_ASSIGN(TestCredentialManagerClient); |
| 23 }; |
| 24 |
| 25 } // namespace password_manager |
| 26 |
| 27 #endif // COMPONENTS_PASSWORD_MANAGER_CONTENT_RENDERER_TEST_CREDENTIAL_MANAGER_
CLIENT_H_ |
OLD | NEW |