Replace scoped_ptr with std::unique_ptr in //ui
R=sadrul, sky
TBR=bshe,aelias,rockot,piman,achuith,reveman
BUG=554298
CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel
Review URL: https://codereview.chromium.org/1868363002
Cr-Commit-Position: refs/heads/master@{#386812}
diff --git a/ui/gfx/platform_font_linux.h b/ui/gfx/platform_font_linux.h
index e990f33b..2638ca2 100644
--- a/ui/gfx/platform_font_linux.h
+++ b/ui/gfx/platform_font_linux.h
@@ -5,11 +5,11 @@
#ifndef UI_GFX_PLATFORM_FONT_LINUX_H_
#define UI_GFX_PLATFORM_FONT_LINUX_H_
+#include <memory>
#include <string>
#include "base/compiler_specific.h"
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
#include "build/build_config.h"
#include "skia/ext/refptr.h"
#include "third_party/skia/include/core/SkRefCnt.h"