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

Unified Diff: chrome/browser/translate/translate_manager_browsertest.cc

Issue 6596005: Fix compiling on gcc-4.6.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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: chrome/browser/translate/translate_manager_browsertest.cc
===================================================================
--- chrome/browser/translate/translate_manager_browsertest.cc (revision 76042)
+++ chrome/browser/translate/translate_manager_browsertest.cc (working copy)
@@ -483,7 +483,7 @@
ASSERT_LT(i, static_cast<size_t>(NUM_LANGUAGES));
std::string lang = LanguageCodeWithDialects(static_cast<Language>(i));
- SCOPED_TRACE(::testing::Message::Message() << "Iteration " << i <<
+ SCOPED_TRACE(::testing::Message() << "Iteration " << i <<
" language=" << lang);
// We should not have a translate infobar.
@@ -1118,7 +1118,7 @@
static_cast<TestingProfile*>(contents()->profile());
test_profile->set_off_the_record(true);
for (int i = 0; i < 8; ++i) {
- SCOPED_TRACE(::testing::Message::Message() << "Iteration " << i <<
+ SCOPED_TRACE(::testing::Message() << "Iteration " << i <<
" incognito mode=" << test_profile->IsOffTheRecord());
SimulateNavigation(GURL("http://www.google.fr"), "Le Google", "fr", true);
infobar = GetTranslateInfoBar();
@@ -1150,7 +1150,7 @@
// to be shown (in non incognito mode only).
test_profile->set_off_the_record(true);
for (int i = 0; i < 8; ++i) {
- SCOPED_TRACE(::testing::Message::Message() << "Iteration " << i <<
+ SCOPED_TRACE(::testing::Message() << "Iteration " << i <<
" incognito mode=" << test_profile->IsOffTheRecord());
SimulateNavigation(GURL("http://www.google.de"), "Das Google", "de", true);
infobar = GetTranslateInfoBar();

Powered by Google App Engine
This is Rietveld 408576698