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

Unified Diff: chromeos/dbus/mock_image_burner_client.h

Issue 10024054: chromeos: Convert D-Bus client classes' callback arguments to const reference (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromeos/dbus/mock_cryptohome_client.h ('k') | chromeos/dbus/mock_power_manager_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/mock_image_burner_client.h
diff --git a/chromeos/dbus/mock_image_burner_client.h b/chromeos/dbus/mock_image_burner_client.h
index 8db0a44d74328c8704d73d5920a18e869fd35375..6cb31fecf2ea0f346c599ebcfd730f42c91d653c 100644
--- a/chromeos/dbus/mock_image_burner_client.h
+++ b/chromeos/dbus/mock_image_burner_client.h
@@ -18,10 +18,11 @@ class MockImageBurnerClient : public ImageBurnerClient {
MockImageBurnerClient();
virtual ~MockImageBurnerClient();
- MOCK_METHOD3(BurnImage,
- void(const std::string&, const std::string&, ErrorCallback));
- MOCK_METHOD2(SetEventHandlers,
- void(BurnFinishedHandler, BurnProgressUpdateHandler));
+ MOCK_METHOD3(BurnImage, void(const std::string&,
+ const std::string&,
+ const ErrorCallback&));
+ MOCK_METHOD2(SetEventHandlers, void(const BurnFinishedHandler&,
+ const BurnProgressUpdateHandler&));
MOCK_METHOD0(ResetEventHandlers, void());
};
« no previous file with comments | « chromeos/dbus/mock_cryptohome_client.h ('k') | chromeos/dbus/mock_power_manager_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698