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: content/common/gpu/media/jpeg_decode_accelerator_unittest.cc

Issue 1859703002: convert //gpu to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: convert newly added scoped_ptr's Created 4 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/common/gpu/media/jpeg_decode_accelerator_unittest.cc
diff --git a/content/common/gpu/media/jpeg_decode_accelerator_unittest.cc b/content/common/gpu/media/jpeg_decode_accelerator_unittest.cc
index 53bc5d1cf50985d93001469fca0b403493030151..b97a94d8d626cc5546fb83c6fa169e8a6929a238 100644
--- a/content/common/gpu/media/jpeg_decode_accelerator_unittest.cc
+++ b/content/common/gpu/media/jpeg_decode_accelerator_unittest.cc
@@ -4,12 +4,12 @@
// This has to be included first.
no sievers 2016/04/18 21:05:33 ^^ Can you either move the include back or just re
Mostyn Bramley-Moore 2016/04/18 21:47:01 Moved back (but it requires me to skip presubmit c
// See http://code.google.com/p/googletest/issues/detail?id=371
-#include "testing/gtest/include/gtest/gtest.h"
-
#include <stddef.h>
#include <stdint.h>
#include <string.h>
+#include <memory>
+
#include "base/at_exit.h"
#include "base/bind.h"
#include "base/command_line.h"
@@ -26,6 +26,7 @@
#include "media/base/test_data_util.h"
#include "media/filters/jpeg_parser.h"
#include "media/video/jpeg_decode_accelerator.h"
+#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/libyuv/include/libyuv.h"
#include "ui/gfx/codec/jpeg_codec.h"

Powered by Google App Engine
This is Rietveld 408576698