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

Unified Diff: src/IceBrowserCompileServer.h

Issue 1838753002: Subzero: Remove IceString. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review changes Created 4 years, 9 months 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 | « src/IceAssemblerARM32.cpp ('k') | src/IceBrowserCompileServer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceBrowserCompileServer.h
diff --git a/src/IceBrowserCompileServer.h b/src/IceBrowserCompileServer.h
index 1729bf816c6c8c158d07f1fd16dbc642f90b9d87..ecacdece63a6c46f4b081c5ef8721febf738170c 100644
--- a/src/IceBrowserCompileServer.h
+++ b/src/IceBrowserCompileServer.h
@@ -77,13 +77,13 @@ public:
StringStream &getErrorStream() { return *ErrorStream; }
- void setFatalError(const IceString &Reason);
+ void setFatalError(const std::string &Reason);
private:
class StringStream {
public:
StringStream() : StrBuf(Buffer) {}
- const IceString &getContents() { return StrBuf.str(); }
+ const std::string &getContents() { return StrBuf.str(); }
Ostream &getStream() { return StrBuf; }
private:
« no previous file with comments | « src/IceAssemblerARM32.cpp ('k') | src/IceBrowserCompileServer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698