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

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

Issue 16770002: Restart Chrome if per session flags have been specified on ChromeOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased to ToT and addressed Nico's comments. Created 7 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 | Annotate | Revision Log
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/dbus/session_manager_client.h" 10 #include "chromeos/dbus/session_manager_client.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 const StorePolicyCallback&)); 44 const StorePolicyCallback&));
45 MOCK_METHOD4(StorePolicyForUser, 45 MOCK_METHOD4(StorePolicyForUser,
46 void(const std::string&, 46 void(const std::string&,
47 const std::string&, 47 const std::string&,
48 const std::string&, 48 const std::string&,
49 const StorePolicyCallback&)); 49 const StorePolicyCallback&));
50 MOCK_METHOD3(StoreDeviceLocalAccountPolicy, 50 MOCK_METHOD3(StoreDeviceLocalAccountPolicy,
51 void(const std::string&, 51 void(const std::string&,
52 const std::string&, 52 const std::string&,
53 const StorePolicyCallback&)); 53 const StorePolicyCallback&));
54 MOCK_METHOD2(SetFlagsForUser,
55 void(const std::string&,
56 const std::vector<std::string>&));
54 }; 57 };
55 58
56 } // namespace chromeos 59 } // namespace chromeos
57 60
58 #endif // CHROMEOS_DBUS_MOCK_SESSION_MANAGER_CLIENT_H_ 61 #endif // CHROMEOS_DBUS_MOCK_SESSION_MANAGER_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698