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

Side by Side Diff: chromeos/dbus/mock_session_manager_client.h

Issue 1966133002: Run RemoveArcData after a user has opted out (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 4 years, 6 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CHROMEOS_DBUS_MOCK_SESSION_MANAGER_CLIENT_H_ 5 #ifndef CHROMEOS_DBUS_MOCK_SESSION_MANAGER_CLIENT_H_
6 #define CHROMEOS_DBUS_MOCK_SESSION_MANAGER_CLIENT_H_ 6 #define CHROMEOS_DBUS_MOCK_SESSION_MANAGER_CLIENT_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "chromeos/cryptohome/cryptohome_parameters.h" 10 #include "chromeos/cryptohome/cryptohome_parameters.h"
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 const StorePolicyCallback&)); 57 const StorePolicyCallback&));
58 MOCK_METHOD2(SetFlagsForUser, 58 MOCK_METHOD2(SetFlagsForUser,
59 void(const cryptohome::Identification&, 59 void(const cryptohome::Identification&,
60 const std::vector<std::string>&)); 60 const std::vector<std::string>&));
61 MOCK_METHOD1(GetServerBackedStateKeys, void(const StateKeysCallback&)); 61 MOCK_METHOD1(GetServerBackedStateKeys, void(const StateKeysCallback&));
62 MOCK_METHOD1(CheckArcAvailability, void(const ArcCallback&)); 62 MOCK_METHOD1(CheckArcAvailability, void(const ArcCallback&));
63 MOCK_METHOD2(StartArcInstance, 63 MOCK_METHOD2(StartArcInstance,
64 void(const cryptohome::Identification&, const ArcCallback&)); 64 void(const cryptohome::Identification&, const ArcCallback&));
65 MOCK_METHOD1(StopArcInstance, void(const ArcCallback&)); 65 MOCK_METHOD1(StopArcInstance, void(const ArcCallback&));
66 MOCK_METHOD1(GetArcStartTime, void(const GetArcStartTimeCallback&)); 66 MOCK_METHOD1(GetArcStartTime, void(const GetArcStartTimeCallback&));
67 MOCK_METHOD1(RemoveArcData, void(const cryptohome::Identification&));
67 }; 68 };
68 69
69 } // namespace chromeos 70 } // namespace chromeos
70 71
71 #endif // CHROMEOS_DBUS_MOCK_SESSION_MANAGER_CLIENT_H_ 72 #endif // CHROMEOS_DBUS_MOCK_SESSION_MANAGER_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698