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

Unified Diff: xfa/fgas/crt/fgas_stream.h

Issue 2535723010: Rename IFX_Stream to IFGAS_Stream. (Closed)
Patch Set: rename more to IFGAS, {} Created 4 years 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
« no previous file with comments | « xfa/fde/xml/fde_xml_imp_unittest.cpp ('k') | xfa/fgas/crt/fgas_stream.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fgas/crt/fgas_stream.h
diff --git a/xfa/fgas/crt/fgas_stream.h b/xfa/fgas/crt/fgas_stream.h
index 413927d22f6509973c12d37f63e7eb317aef605f..bd065ff308f3b6fb2b53e2211396037b7ede0716 100644
--- a/xfa/fgas/crt/fgas_stream.h
+++ b/xfa/fgas/crt/fgas_stream.h
@@ -26,25 +26,25 @@ enum FX_STREAMSEEK {
FX_STREAMSEEK_End,
};
-class IFX_Stream {
+class IFGAS_Stream {
public:
- static IFX_Stream* CreateStream(IFX_SeekableReadStream* pFileRead,
- uint32_t dwAccess);
- static IFX_Stream* CreateStream(IFX_SeekableWriteStream* pFileWrite,
- uint32_t dwAccess);
- static IFX_Stream* CreateStream(uint8_t* pData,
- int32_t length,
- uint32_t dwAccess);
- static IFX_Stream* CreateTextStream(IFX_Stream* pBaseStream,
- bool bDeleteOnRelease);
+ static IFGAS_Stream* CreateStream(IFX_SeekableReadStream* pFileRead,
+ uint32_t dwAccess);
+ static IFGAS_Stream* CreateStream(IFX_SeekableWriteStream* pFileWrite,
+ uint32_t dwAccess);
+ static IFGAS_Stream* CreateStream(uint8_t* pData,
+ int32_t length,
+ uint32_t dwAccess);
+ static IFGAS_Stream* CreateTextStream(IFGAS_Stream* pBaseStream,
+ bool bDeleteOnRelease);
- virtual ~IFX_Stream() {}
+ virtual ~IFGAS_Stream() {}
virtual void Release() = 0;
- virtual IFX_Stream* Retain() = 0;
+ virtual IFGAS_Stream* Retain() = 0;
- virtual IFX_Stream* CreateSharedStream(uint32_t dwAccess,
- int32_t iOffset,
- int32_t iLength) = 0;
+ virtual IFGAS_Stream* CreateSharedStream(uint32_t dwAccess,
+ int32_t iOffset,
+ int32_t iLength) = 0;
virtual uint32_t GetAccessModes() const = 0;
virtual int32_t GetLength() const = 0;
« no previous file with comments | « xfa/fde/xml/fde_xml_imp_unittest.cpp ('k') | xfa/fgas/crt/fgas_stream.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698