OLD | NEW |
---|---|
(Empty) | |
1 // 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.
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_COMMON_IMAGE_WRITER_IMAGE_WRITER_CLIENT_H_ | |
6 #define CHROME_COMMON_IMAGE_WRITER_IMAGE_WRITER_CLIENT_H_ | |
7 | |
8 namespace image_writer { | |
9 | |
10 class ImageWriterClient { | |
11 public: | |
12 virtual ~ImageWriterClient() {} | |
13 | |
14 virtual bool BurnImage() = 0; | |
15 } // namespace image_writer | |
16 | |
17 #endif // CHROME_COMMON_IMAGE_WRITER_IMAGE_WRITER_CLIENT_H_ | |
OLD | NEW |