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

Unified Diff: src/jsregexp.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
Index: src/jsregexp.cc
diff --git a/src/jsregexp.cc b/src/jsregexp.cc
index 5962bdec8a98680709f85c96671e7fd53b8db2a0..18004e3b59e0ea02020d4c27a4b730b4463f6274 100644
--- a/src/jsregexp.cc
+++ b/src/jsregexp.cc
@@ -5,6 +5,7 @@
#include "src/v8.h"
#include "src/ast.h"
+#include "src/base/platform/platform.h"
#include "src/compilation-cache.h"
#include "src/compiler.h"
#include "src/execution.h"
@@ -12,7 +13,6 @@
#include "src/jsregexp-inl.h"
#include "src/jsregexp.h"
#include "src/parser.h"
-#include "src/platform.h"
#include "src/regexp-macro-assembler.h"
#include "src/regexp-macro-assembler-irregexp.h"
#include "src/regexp-macro-assembler-tracer.h"
@@ -4655,7 +4655,7 @@ void DispatchTable::Dump() {
StringStream stream(&alloc);
DispatchTableDumper dumper(&stream);
tree()->ForEach(&dumper);
- OS::PrintError("%s", stream.ToCString().get());
+ base::OS::PrintError("%s", stream.ToCString().get());
}
« src/base/macros.h ('K') | « src/json-parser.h ('k') | src/libplatform/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698