Chromium Code Reviews| 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_ |