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

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

Issue 2693013006: arc: Add cryptohome_id to EmitArcBooted. (Closed)
Patch Set: Created 3 years, 10 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
Yusuke Sato 2017/02/15 18:31:37 remove
xzhou 2017/02/16 18:34:50 Done.
1 // Copyright 2013 The Chromium Authors. All rights reserved. 2 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 3 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 4 // found in the LICENSE file.
4 5
5 #ifndef CHROMEOS_DBUS_FAKE_SESSION_MANAGER_CLIENT_H_ 6 #ifndef CHROMEOS_DBUS_FAKE_SESSION_MANAGER_CLIENT_H_
6 #define CHROMEOS_DBUS_FAKE_SESSION_MANAGER_CLIENT_H_ 7 #define CHROMEOS_DBUS_FAKE_SESSION_MANAGER_CLIENT_H_
7 8
8 #include <map> 9 #include <map>
9 #include <string> 10 #include <string>
10 #include <vector> 11 #include <vector>
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 void GetServerBackedStateKeys(const StateKeysCallback& callback) override; 68 void GetServerBackedStateKeys(const StateKeysCallback& callback) override;
68 69
69 void CheckArcAvailability(const ArcCallback& callback) override; 70 void CheckArcAvailability(const ArcCallback& callback) override;
70 void StartArcInstance(const cryptohome::Identification& cryptohome_id, 71 void StartArcInstance(const cryptohome::Identification& cryptohome_id,
71 bool disable_boot_completed_broadcast, 72 bool disable_boot_completed_broadcast,
72 const StartArcInstanceCallback& callback) override; 73 const StartArcInstanceCallback& callback) override;
73 void StopArcInstance(const ArcCallback& callback) override; 74 void StopArcInstance(const ArcCallback& callback) override;
74 void SetArcCpuRestriction( 75 void SetArcCpuRestriction(
75 login_manager::ContainerCpuRestrictionState restriction_state, 76 login_manager::ContainerCpuRestrictionState restriction_state,
76 const ArcCallback& callback) override; 77 const ArcCallback& callback) override;
77 void EmitArcBooted() override; 78 void EmitArcBooted(const cryptohome::Identification& cryptohome_id,
79 const ArcCallback& callback) override;
78 void GetArcStartTime(const GetArcStartTimeCallback& callback) override; 80 void GetArcStartTime(const GetArcStartTimeCallback& callback) override;
79 void RemoveArcData(const cryptohome::Identification& cryptohome_id, 81 void RemoveArcData(const cryptohome::Identification& cryptohome_id,
80 const ArcCallback& callback) override; 82 const ArcCallback& callback) override;
81 83
82 const std::string& device_policy() const; 84 const std::string& device_policy() const;
83 void set_device_policy(const std::string& policy_blob); 85 void set_device_policy(const std::string& policy_blob);
84 86
85 const std::string& user_policy( 87 const std::string& user_policy(
86 const cryptohome::Identification& cryptohome_id) const; 88 const cryptohome::Identification& cryptohome_id) const;
87 void set_user_policy(const cryptohome::Identification& cryptohome_id, 89 void set_user_policy(const cryptohome::Identification& cryptohome_id,
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 int notify_lock_screen_dismissed_call_count_; 137 int notify_lock_screen_dismissed_call_count_;
136 138
137 bool arc_available_; 139 bool arc_available_;
138 140
139 DISALLOW_COPY_AND_ASSIGN(FakeSessionManagerClient); 141 DISALLOW_COPY_AND_ASSIGN(FakeSessionManagerClient);
140 }; 142 };
141 143
142 } // namespace chromeos 144 } // namespace chromeos
143 145
144 #endif // CHROMEOS_DBUS_FAKE_SESSION_MANAGER_CLIENT_H_ 146 #endif // CHROMEOS_DBUS_FAKE_SESSION_MANAGER_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698