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

Side by Side Diff: components/password_manager/content/renderer/test_credential_manager_client.h

Issue 533493004: Credential Manager: Refactor password_manager::CredentialManagerClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Explicit. Created 6 years, 3 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
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698