| Index: chrome/browser/ui/search/search_tab_helper_unittest.cc
|
| diff --git a/chrome/browser/ui/search/search_tab_helper_unittest.cc b/chrome/browser/ui/search/search_tab_helper_unittest.cc
|
| index 850a57409063d1ff5658810d0b195d8e861a0439..71af90e6df49b28bf37c0dd1581d1a5a71582b69 100644
|
| --- a/chrome/browser/ui/search/search_tab_helper_unittest.cc
|
| +++ b/chrome/browser/ui/search/search_tab_helper_unittest.cc
|
| @@ -190,8 +190,8 @@ TEST_F(SearchTabHelperTest, OnChromeIdentityCheckMatch) {
|
|
|
| ChromeViewMsg_ChromeIdentityCheckResult::Param params;
|
| ChromeViewMsg_ChromeIdentityCheckResult::Read(message, ¶ms);
|
| - EXPECT_EQ(test_identity, get<0>(params));
|
| - ASSERT_TRUE(get<1>(params));
|
| + EXPECT_EQ(test_identity, base::get<0>(params));
|
| + ASSERT_TRUE(base::get<1>(params));
|
| }
|
|
|
| TEST_F(SearchTabHelperTest, OnChromeIdentityCheckMatchSlightlyDifferentGmail) {
|
| @@ -213,8 +213,8 @@ TEST_F(SearchTabHelperTest, OnChromeIdentityCheckMatchSlightlyDifferentGmail) {
|
|
|
| ChromeViewMsg_ChromeIdentityCheckResult::Param params;
|
| ChromeViewMsg_ChromeIdentityCheckResult::Read(message, ¶ms);
|
| - EXPECT_EQ(test_identity, get<0>(params));
|
| - ASSERT_TRUE(get<1>(params));
|
| + EXPECT_EQ(test_identity, base::get<0>(params));
|
| + ASSERT_TRUE(base::get<1>(params));
|
| }
|
|
|
| TEST_F(SearchTabHelperTest, OnChromeIdentityCheckMatchSlightlyDifferentGmail2) {
|
| @@ -237,8 +237,8 @@ TEST_F(SearchTabHelperTest, OnChromeIdentityCheckMatchSlightlyDifferentGmail2) {
|
|
|
| ChromeViewMsg_ChromeIdentityCheckResult::Param params;
|
| ChromeViewMsg_ChromeIdentityCheckResult::Read(message, ¶ms);
|
| - EXPECT_EQ(test_identity, get<0>(params));
|
| - ASSERT_TRUE(get<1>(params));
|
| + EXPECT_EQ(test_identity, base::get<0>(params));
|
| + ASSERT_TRUE(base::get<1>(params));
|
| }
|
|
|
| TEST_F(SearchTabHelperTest, OnChromeIdentityCheckMismatch) {
|
| @@ -257,8 +257,8 @@ TEST_F(SearchTabHelperTest, OnChromeIdentityCheckMismatch) {
|
|
|
| ChromeViewMsg_ChromeIdentityCheckResult::Param params;
|
| ChromeViewMsg_ChromeIdentityCheckResult::Read(message, ¶ms);
|
| - EXPECT_EQ(test_identity, get<0>(params));
|
| - ASSERT_FALSE(get<1>(params));
|
| + EXPECT_EQ(test_identity, base::get<0>(params));
|
| + ASSERT_FALSE(base::get<1>(params));
|
| }
|
|
|
| TEST_F(SearchTabHelperTest, OnChromeIdentityCheckSignedOutMismatch) {
|
| @@ -277,8 +277,8 @@ TEST_F(SearchTabHelperTest, OnChromeIdentityCheckSignedOutMismatch) {
|
|
|
| ChromeViewMsg_ChromeIdentityCheckResult::Param params;
|
| ChromeViewMsg_ChromeIdentityCheckResult::Read(message, ¶ms);
|
| - EXPECT_EQ(test_identity, get<0>(params));
|
| - ASSERT_FALSE(get<1>(params));
|
| + EXPECT_EQ(test_identity, base::get<0>(params));
|
| + ASSERT_FALSE(base::get<1>(params));
|
| }
|
|
|
| TEST_F(SearchTabHelperTest, OnHistorySyncCheckSyncing) {
|
| @@ -296,7 +296,7 @@ TEST_F(SearchTabHelperTest, OnHistorySyncCheckSyncing) {
|
|
|
| ChromeViewMsg_HistorySyncCheckResult::Param params;
|
| ChromeViewMsg_HistorySyncCheckResult::Read(message, ¶ms);
|
| - ASSERT_TRUE(get<0>(params));
|
| + ASSERT_TRUE(base::get<0>(params));
|
| }
|
|
|
| TEST_F(SearchTabHelperTest, OnHistorySyncCheckNotSyncing) {
|
| @@ -314,7 +314,7 @@ TEST_F(SearchTabHelperTest, OnHistorySyncCheckNotSyncing) {
|
|
|
| ChromeViewMsg_HistorySyncCheckResult::Param params;
|
| ChromeViewMsg_HistorySyncCheckResult::Read(message, ¶ms);
|
| - ASSERT_FALSE(get<0>(params));
|
| + ASSERT_FALSE(base::get<0>(params));
|
| }
|
|
|
| class TabTitleObserver : public content::WebContentsObserver {
|
|
|