| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 CHROME_FRAME_CHROME_PROTOCOL_H_ | 5 #ifndef CHROME_FRAME_CHROME_PROTOCOL_H_ |
| 6 #define CHROME_FRAME_CHROME_PROTOCOL_H_ | 6 #define CHROME_FRAME_CHROME_PROTOCOL_H_ |
| 7 | 7 |
| 8 #include <atlbase.h> | 8 #include <atlbase.h> |
| 9 #include <atlcom.h> | 9 #include <atlcom.h> |
| 10 #include "chrome_frame/resource.h" | 10 #include "chrome_frame/resource.h" |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 STDMETHOD(Read)(void* buffer, | 53 STDMETHOD(Read)(void* buffer, |
| 54 ULONG buffer_size_in_bytes, | 54 ULONG buffer_size_in_bytes, |
| 55 ULONG* bytes_read); | 55 ULONG* bytes_read); |
| 56 STDMETHOD(Seek)(LARGE_INTEGER move_by, | 56 STDMETHOD(Seek)(LARGE_INTEGER move_by, |
| 57 DWORD origin, | 57 DWORD origin, |
| 58 ULARGE_INTEGER* new_position); | 58 ULARGE_INTEGER* new_position); |
| 59 STDMETHOD(LockRequest)(DWORD options); | 59 STDMETHOD(LockRequest)(DWORD options); |
| 60 STDMETHOD(UnlockRequest)(void); | 60 STDMETHOD(UnlockRequest)(void); |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 OBJECT_ENTRY_AUTO(__uuidof(ChromeProtocol), ChromeProtocol) | |
| 64 | |
| 65 #endif // CHROME_FRAME_CHROME_PROTOCOL_H_ | 63 #endif // CHROME_FRAME_CHROME_PROTOCOL_H_ |
| OLD | NEW |