Commit 5692c62b authored by Lei Zhang's avatar Lei Zhang Committed by Commit Bot

Fix nits in render_text_fuzzer.cc.

Change-Id: Ifb157a184ba20ac9435659d91d11523503daa87e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1893995
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: default avatarEtienne Bergeron <etienneb@chromium.org>
Reviewed-by: default avatarAlexei Svitkine <asvitkine@chromium.org>
Cr-Commit-Position: refs/heads/master@{#711768}
parent a9eaa288
......@@ -3,8 +3,8 @@
// found in the LICENSE file.
#include "base/at_exit.h"
#include "base/i18n/icu_util.h"
#include "base/command_line.h"
#include "base/i18n/icu_util.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/task_environment.h"
#include "base/test/test_timeouts.h"
......@@ -15,11 +15,11 @@
namespace {
#if defined(OS_WIN)
const char* kFontDescription = "Segoe UI, 13px";
const char kFontDescription[] = "Segoe UI, 13px";
#elif defined(OS_ANDROID)
const char* kFontDescription = "serif, 13px";
const char kFontDescription[] = "serif, 13px";
#else
const char* kFontDescription = "sans, 13px";
const char kFontDescription[] = "sans, 13px";
#endif
struct Environment {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment