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

Unified Diff: src/log-utils.cc

Issue 358363002: Move platform abstraction to base library (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: updates Created 6 years, 6 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
« src/base/macros.h ('K') | « src/log-utils.h ('k') | src/mark-compact.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/log-utils.cc
diff --git a/src/log-utils.cc b/src/log-utils.cc
index 4598b81199c2ee3f4a96e18dfd30a1d16b2ba50f..8f012252fce9d9252eefe64c677da132de71cf9a 100644
--- a/src/log-utils.cc
+++ b/src/log-utils.cc
@@ -61,13 +61,13 @@ void Log::OpenStdout() {
void Log::OpenTemporaryFile() {
ASSERT(!IsEnabled());
- output_handle_ = i::OS::OpenTemporaryFile();
+ output_handle_ = base::OS::OpenTemporaryFile();
}
void Log::OpenFile(const char* name) {
ASSERT(!IsEnabled());
- output_handle_ = OS::FOpen(name, OS::LogFileOpenMode);
+ output_handle_ = base::OS::FOpen(name, base::OS::LogFileOpenMode);
}
« src/base/macros.h ('K') | « src/log-utils.h ('k') | src/mark-compact.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698