Pick the namespace alias 'i' from v8.h.
authormikhail.naganov@gmail.com <mikhail.naganov@gmail.com@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Fri, 12 Aug 2011 09:49:55 +0000 (09:49 +0000)
committermikhail.naganov@gmail.com <mikhail.naganov@gmail.com@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Fri, 12 Aug 2011 09:49:55 +0000 (09:49 +0000)
These files already include v8.h so they don't need to define the
namespace alias again.

Signed-off-by: Thiago Farina <tfarina@chromium.org>
Review URL: http://codereview.chromium.org/7640012

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@8919 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

12 files changed:
src/d8.h
src/mksnapshot.cc
src/preparser.cc
test/cctest/test-accessors.cc
test/cctest/test-circular-queue.cc
test/cctest/test-cpu-profiler.cc
test/cctest/test-heap-profiler.cc
test/cctest/test-log-stack-tracer.cc
test/cctest/test-log.cc
test/cctest/test-parsing.cc
test/cctest/test-profile-generator.cc
test/cctest/test-unbound-queue.cc

index 40cc83b..28321f5 100644 (file)
--- a/src/d8.h
+++ b/src/d8.h
 
 namespace v8 {
 
-#ifndef V8_SHARED
-namespace i = v8::internal;
-#endif  // V8_SHARED
-
 
 #ifndef V8_SHARED
 // A single counter in a counter collection.
index c5ce12f..4f5fe96 100644 (file)
@@ -40,8 +40,6 @@
 #include "serialize.h"
 #include "list.h"
 
-// use explicit namespace to avoid clashing with types in namespace v8
-namespace i = v8::internal;
 using namespace v8;
 
 static const unsigned int kMaxCounters = 256;
index c741b46..463df83 100644 (file)
@@ -56,8 +56,6 @@ namespace preparser {
 // That means that contextual checks (like a label being declared where
 // it is used) are generally omitted.
 
-namespace i = ::v8::internal;
-
 void PreParser::ReportUnexpectedToken(i::Token::Value token) {
   // We don't report stack overflows here, to avoid increasing the
   // stack depth even further.  Instead we report it after parsing is
index 028f82f..d95536d 100644 (file)
@@ -44,8 +44,6 @@ using ::v8::Function;
 using ::v8::AccessorInfo;
 using ::v8::Extension;
 
-namespace i = ::v8::internal;
-
 static v8::Handle<Value> handle_property(Local<String> name,
                                          const AccessorInfo&) {
   ApiTestFuzzer::Fuzz();
index c4e5c4c..2861b1f 100644 (file)
@@ -6,8 +6,6 @@
 #include "circular-queue-inl.h"
 #include "cctest.h"
 
-namespace i = v8::internal;
-
 using i::SamplingCircularQueue;
 
 
index 9ff2a17..81c487d 100644 (file)
@@ -7,8 +7,6 @@
 #include "cctest.h"
 #include "../include/v8-profiler.h"
 
-namespace i = v8::internal;
-
 using i::CodeEntry;
 using i::CpuProfile;
 using i::CpuProfiler;
index 8675a01..169e6dc 100644 (file)
@@ -10,8 +10,6 @@
 #include "utils-inl.h"
 #include "../include/v8-profiler.h"
 
-namespace i = v8::internal;
-
 namespace {
 
 class NamedEntriesDetector {
index 2bcb3fe..f536e6b 100644 (file)
@@ -54,8 +54,6 @@ using v8::internal::JSFunction;
 using v8::internal::StackTracer;
 using v8::internal::TickSample;
 
-namespace i = v8::internal;
-
 
 static v8::Persistent<v8::Context> env;
 
index 262e7bb..dfbc733 100644 (file)
@@ -23,8 +23,6 @@ using v8::internal::EmbeddedVector;
 using v8::internal::Logger;
 using v8::internal::StrLength;
 
-namespace i = v8::internal;
-
 namespace {
 
 class ScopedLoggerInitializer {
index fe73876..654c6cf 100755 (executable)
@@ -40,8 +40,6 @@
 #include "preparser.h"
 #include "cctest.h"
 
-namespace i = ::v8::internal;
-
 TEST(ScanKeywords) {
   struct KeywordToken {
     const char* keyword;
index 6d30443..250ebd4 100644 (file)
@@ -7,8 +7,6 @@
 #include "cctest.h"
 #include "../include/v8-profiler.h"
 
-namespace i = v8::internal;
-
 using i::CodeEntry;
 using i::CodeMap;
 using i::CpuProfile;
index df5509e..3dc87ae 100644 (file)
@@ -6,8 +6,6 @@
 #include "unbound-queue-inl.h"
 #include "cctest.h"
 
-namespace i = v8::internal;
-
 using i::UnboundQueue;