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

Unified Diff: src/compiler/compiler-unittests.cc

Issue 526223002: Use Chrome compatible naming for compiler specifics. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: mips Created 6 years, 4 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/compiler/common-node-cache.h ('k') | src/compiler/gap-resolver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/compiler-unittests.cc
diff --git a/src/compiler/compiler-unittests.cc b/src/compiler/compiler-unittests.cc
index 9ae03a616b5adc74b9c700a03ca4491fdd76ab31..b3cbb865c6fa2beb81d624bf7d88da8c5bcf8e9c 100644
--- a/src/compiler/compiler-unittests.cc
+++ b/src/compiler/compiler-unittests.cc
@@ -55,19 +55,19 @@ void CompilerTest::TearDownTestCase() {
namespace {
-class CompilerTestEnvironment V8_FINAL : public ::testing::Environment {
+class CompilerTestEnvironment FINAL : public ::testing::Environment {
public:
CompilerTestEnvironment() : platform_(NULL) {}
~CompilerTestEnvironment() {}
- virtual void SetUp() V8_OVERRIDE {
+ virtual void SetUp() OVERRIDE {
EXPECT_THAT(platform_, IsNull());
platform_ = v8::platform::CreateDefaultPlatform();
v8::V8::InitializePlatform(platform_);
ASSERT_TRUE(v8::V8::Initialize());
}
- virtual void TearDown() V8_OVERRIDE {
+ virtual void TearDown() OVERRIDE {
ASSERT_THAT(platform_, NotNull());
v8::V8::Dispose();
v8::V8::ShutdownPlatform();
« no previous file with comments | « src/compiler/common-node-cache.h ('k') | src/compiler/gap-resolver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698