blob: b3b30705227d5ed7d609e4559b984736fe24e646 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_VIEWS_CONTENT_TEST_UTILS_H_
#define CHROME_BROWSER_UI_VIEWS_CONTENT_TEST_UTILS_H_
#include "base/time/time.h"
namespace content {
class WebContents;
}
// Tests that text input in |contents| can be updated via key events. Note this
// function is destructive and replaces the page in |contents| with a input.
void TestTextInputViaKeyEvent(content::WebContents* contents);
#endif // CHROME_BROWSER_UI_VIEWS_CONTENT_TEST_UTILS_H_