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

Unified Diff: chrome/common/image_writer/image_writer_client.h

Issue 61643015: Adds imageWriterPrivate support for Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reorganization and test updates. Created 7 years, 1 month 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
Index: chrome/common/image_writer/image_writer_client.h
diff --git a/chrome/common/image_writer/image_writer_client.h b/chrome/common/image_writer/image_writer_client.h
new file mode 100644
index 0000000000000000000000000000000000000000..0717c6f8a380f5461e109b7918587e0eab28fefd
--- /dev/null
+++ b/chrome/common/image_writer/image_writer_client.h
@@ -0,0 +1,17 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
jam 2013/11/21 19:36:41 i don't see anyone using this file?
Drew Haven 2013/11/26 02:10:43 Oh, you're right. Oops.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_COMMON_IMAGE_WRITER_IMAGE_WRITER_CLIENT_H_
+#define CHROME_COMMON_IMAGE_WRITER_IMAGE_WRITER_CLIENT_H_
+
+namespace image_writer {
+
+class ImageWriterClient {
+ public:
+ virtual ~ImageWriterClient() {}
+
+ virtual bool BurnImage() = 0;
+} // namespace image_writer
+
+#endif // CHROME_COMMON_IMAGE_WRITER_IMAGE_WRITER_CLIENT_H_

Powered by Google App Engine
This is Rietveld 408576698