OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef REMOTING_HOST_SETUP_NATIVE_MESSAGING_WRITER_H_ | 5 #ifndef REMOTING_HOST_NATIVE_MESSAGING_NATIVE_MESSAGING_WRITER_H_ |
6 #define REMOTING_HOST_SETUP_NATIVE_MESSAGING_WRITER_H_ | 6 #define REMOTING_HOST_NATIVE_MESSAGING_NATIVE_MESSAGING_WRITER_H_ |
7 | 7 |
8 #include "base/platform_file.h" | 8 #include "base/platform_file.h" |
9 #include "net/base/file_stream.h" | 9 #include "net/base/file_stream.h" |
10 | 10 |
11 namespace base { | 11 namespace base { |
12 class Value; | 12 class Value; |
13 } // namespace base | 13 } // namespace base |
14 | 14 |
15 namespace remoting { | 15 namespace remoting { |
16 | 16 |
(...skipping 10 matching lines...) Expand all Loading... |
27 | 27 |
28 private: | 28 private: |
29 net::FileStream write_stream_; | 29 net::FileStream write_stream_; |
30 bool fail_; | 30 bool fail_; |
31 | 31 |
32 DISALLOW_COPY_AND_ASSIGN(NativeMessagingWriter); | 32 DISALLOW_COPY_AND_ASSIGN(NativeMessagingWriter); |
33 }; | 33 }; |
34 | 34 |
35 } // namespace remoting | 35 } // namespace remoting |
36 | 36 |
37 #endif // REMOTING_HOST_SETUP_NATIVE_MESSAGING_WRITER_H_ | 37 #endif // REMOTING_HOST_NATIVE_MESSAGING_NATIVE_MESSAGING_WRITER_H_ |
OLD | NEW |