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

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

Issue 2165643004: arc: add enterprise_reporting.mojom interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed SessionManagerClient stub RemoveArcData method. Created 4 years, 4 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
« no previous file with comments | « chrome/chrome_browser_chromeos.gypi ('k') | chromeos/dbus/fake_session_manager_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_FAKE_SESSION_MANAGER_CLIENT_H_ 5 #ifndef CHROMEOS_DBUS_FAKE_SESSION_MANAGER_CLIENT_H_
6 #define CHROMEOS_DBUS_FAKE_SESSION_MANAGER_CLIENT_H_ 6 #define CHROMEOS_DBUS_FAKE_SESSION_MANAGER_CLIENT_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 const StorePolicyCallback& callback) override; 61 const StorePolicyCallback& callback) override;
62 void SetFlagsForUser(const cryptohome::Identification& cryptohome_id, 62 void SetFlagsForUser(const cryptohome::Identification& cryptohome_id,
63 const std::vector<std::string>& flags) override; 63 const std::vector<std::string>& flags) override;
64 void GetServerBackedStateKeys(const StateKeysCallback& callback) override; 64 void GetServerBackedStateKeys(const StateKeysCallback& callback) override;
65 65
66 void CheckArcAvailability(const ArcCallback& callback) override; 66 void CheckArcAvailability(const ArcCallback& callback) override;
67 void StartArcInstance(const cryptohome::Identification& cryptohome_id, 67 void StartArcInstance(const cryptohome::Identification& cryptohome_id,
68 const ArcCallback& callback) override; 68 const ArcCallback& callback) override;
69 void StopArcInstance(const ArcCallback& callback) override; 69 void StopArcInstance(const ArcCallback& callback) override;
70 void GetArcStartTime(const GetArcStartTimeCallback& callback) override; 70 void GetArcStartTime(const GetArcStartTimeCallback& callback) override;
71 void RemoveArcData(const cryptohome::Identification& cryptohome_id) override; 71 void RemoveArcData(const cryptohome::Identification& cryptohome_id,
72 const ArcCallback& callback) override;
72 73
73 const std::string& device_policy() const; 74 const std::string& device_policy() const;
74 void set_device_policy(const std::string& policy_blob); 75 void set_device_policy(const std::string& policy_blob);
75 76
76 const std::string& user_policy( 77 const std::string& user_policy(
77 const cryptohome::Identification& cryptohome_id) const; 78 const cryptohome::Identification& cryptohome_id) const;
78 void set_user_policy(const cryptohome::Identification& cryptohome_id, 79 void set_user_policy(const cryptohome::Identification& cryptohome_id,
79 const std::string& policy_blob); 80 const std::string& policy_blob);
80 81
81 const std::string& device_local_account_policy( 82 const std::string& device_local_account_policy(
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 int notify_lock_screen_dismissed_call_count_; 127 int notify_lock_screen_dismissed_call_count_;
127 128
128 bool arc_available_; 129 bool arc_available_;
129 130
130 DISALLOW_COPY_AND_ASSIGN(FakeSessionManagerClient); 131 DISALLOW_COPY_AND_ASSIGN(FakeSessionManagerClient);
131 }; 132 };
132 133
133 } // namespace chromeos 134 } // namespace chromeos
134 135
135 #endif // CHROMEOS_DBUS_FAKE_SESSION_MANAGER_CLIENT_H_ 136 #endif // CHROMEOS_DBUS_FAKE_SESSION_MANAGER_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/chrome_browser_chromeos.gypi ('k') | chromeos/dbus/fake_session_manager_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698