Index: chromeos/dbus/fake_image_burner_client.h |
diff --git a/chromeos/dbus/fake_image_burner_client.h b/chromeos/dbus/fake_image_burner_client.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..cb18bcf467e189d6adccb1fb08d6f094920bbf43 |
--- /dev/null |
+++ b/chromeos/dbus/fake_image_burner_client.h |
@@ -0,0 +1,35 @@ |
+// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROMEOS_DBUS_FAKE_IMAGE_BURNER_CLIENT_H_ |
+#define CHROMEOS_DBUS_FAKE_IMAGE_BURNER_CLIENT_H_ |
+ |
+#include <string> |
+ |
+#include "chromeos/dbus/image_burner_client.h" |
+ |
+namespace chromeos { |
+ |
+// A fake implemetation of ImageBurnerClient. This class does nothing. |
+class FakeImageBurnerClient : public ImageBurnerClient { |
+ public: |
+ FakeImageBurnerClient(); |
+ virtual ~FakeImageBurnerClient(); |
+ |
+ // ImageBurnerClient overrides. |
+ virtual void BurnImage(const std::string& from_path, |
+ const std::string& to_path, |
+ const ErrorCallback& error_callback) OVERRIDE; |
+ virtual void SetEventHandlers( |
+ const BurnFinishedHandler& burn_finished_handler, |
+ const BurnProgressUpdateHandler& burn_progress_update_handler) OVERRIDE; |
+ virtual void ResetEventHandlers() OVERRIDE; |
+ |
+ private: |
+ DISALLOW_COPY_AND_ASSIGN(FakeImageBurnerClient); |
+}; |
+ |
+} // namespace chromeos |
+ |
+#endif // CHROMEOS_DBUS_FAKE_IMAGE_BURNER_CLIENT_H_ |