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

Unified Diff: media/filters/h265_parser.cc

Issue 1904213003: Convert //media/filters from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: media/filters/h265_parser.cc
diff --git a/media/filters/h265_parser.cc b/media/filters/h265_parser.cc
index bf935e001c74458b23b5da0d96f16a86a20ad83e..b77495b6b235c907dbbc0523015d6e3867babbf9 100644
--- a/media/filters/h265_parser.cc
+++ b/media/filters/h265_parser.cc
@@ -2,14 +2,15 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "media/filters/h265_parser.h"
+
#include <stddef.h>
+#include <memory>
ddorwin 2016/04/21 23:14:20 It looks like this isn't even necessary.
dcheng 2016/04/21 23:16:28 Done.
+
#include "base/logging.h"
-#include "base/memory/scoped_ptr.h"
#include "base/stl_util.h"
-
#include "media/base/decrypt_config.h"
-#include "media/filters/h265_parser.h"
namespace media {

Powered by Google App Engine
This is Rietveld 408576698