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

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

Issue 2857983003: Use constexpr TaskTraits constructor in content. (Closed)
Patch Set: Created 3 years, 8 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/navigation_entry_screenshot_manager.cc
diff --git a/content/browser/frame_host/navigation_entry_screenshot_manager.cc b/content/browser/frame_host/navigation_entry_screenshot_manager.cc
index aa740cb6efd81a995a3b5a7f75dd49dd290d75e2..193392dcec7bd17c763552891e10098e5111a98f 100644
--- a/content/browser/frame_host/navigation_entry_screenshot_manager.cc
+++ b/content/browser/frame_host/navigation_entry_screenshot_manager.cc
@@ -33,8 +33,7 @@ class ScreenshotData : public base::RefCountedThreadSafe<ScreenshotData> {
void EncodeScreenshot(const SkBitmap& bitmap, base::Closure callback) {
base::PostTaskWithTraitsAndReply(
- FROM_HERE, base::TaskTraits().WithShutdownBehavior(
- base::TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN),
+ FROM_HERE, {base::TaskShutdownBehavior::CONTINUE_ON_SHUTDOWN},
base::Bind(&ScreenshotData::EncodeOnWorker, this, bitmap), callback);
}

Powered by Google App Engine
This is Rietveld 408576698