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

Unified Diff: content/browser/frame_host/interstitial_page_impl_browsertest.cc

Issue 2023243002: Remove base::Tuple (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: lint fix Created 4 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: content/browser/frame_host/interstitial_page_impl_browsertest.cc
diff --git a/content/browser/frame_host/interstitial_page_impl_browsertest.cc b/content/browser/frame_host/interstitial_page_impl_browsertest.cc
index b483282f5892092d7ae2071a77e2f085248b390c..57a42f81ec5307a125503d1b540e7d6b30a1294f 100644
--- a/content/browser/frame_host/interstitial_page_impl_browsertest.cc
+++ b/content/browser/frame_host/interstitial_page_impl_browsertest.cc
@@ -4,6 +4,8 @@
#include "content/browser/frame_host/interstitial_page_impl.h"
+#include <tuple>
+
#include "base/macros.h"
#include "base/strings/utf_string_conversions.h"
#include "base/synchronization/waitable_event.h"
@@ -101,7 +103,7 @@ class InterstitialTitleUpdateWatcher : public BrowserMessageFilter {
BrowserThread::PostTask(
BrowserThread::UI, FROM_HERE,
base::Bind(&InterstitialTitleUpdateWatcher::OnTitleUpdateReceived,
- this, base::get<0>(params)));
+ this, std::get<0>(params)));
}
}
return false;
@@ -156,7 +158,7 @@ class ClipboardMessageWatcher : public IPC::MessageFilter {
BrowserThread::PostTask(
BrowserThread::UI, FROM_HERE,
base::Bind(&ClipboardMessageWatcher::OnWriteText, this,
- base::UTF16ToUTF8(base::get<1>(params))));
+ base::UTF16ToUTF8(std::get<1>(params))));
}
return true;
}

Powered by Google App Engine
This is Rietveld 408576698