diff options
author | boliu <boliu@chromium.org> | 2014-11-11 14:59:33 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-11 22:59:54 +0000 |
commit | fb2874dc42287779892b8b6a497ccc559e202fac (patch) | |
tree | 4fb23f747b9ee32c57f6f779bf51b7b7b76cae07 /android_webview/browser/browser_view_renderer_unittest.cc | |
parent | d23c7090070e51df1091a277738e02ad7bbdf836 (diff) | |
download | chromium_src-fb2874dc42287779892b8b6a497ccc559e202fac.zip chromium_src-fb2874dc42287779892b8b6a497ccc559e202fac.tar.gz chromium_src-fb2874dc42287779892b8b6a497ccc559e202fac.tar.bz2 |
Partial test harness for android webview rendering
Goal for this class of tests is to test the classes that
interacts between the android view system and the chromium
compositor. It is modelled after cc::LayerTreeTest
This is the first step that brings up a BrowserViewRenderer
object in a test.
Individual pieces:
* Add a TestSynchronousCompositor in content
* Remove BrowserViewRenderer dependency on WebContents
BUG=418346
Review URL: https://codereview.chromium.org/703953002
Cr-Commit-Position: refs/heads/master@{#303736}
Diffstat (limited to 'android_webview/browser/browser_view_renderer_unittest.cc')
-rw-r--r-- | android_webview/browser/browser_view_renderer_unittest.cc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/android_webview/browser/browser_view_renderer_unittest.cc b/android_webview/browser/browser_view_renderer_unittest.cc new file mode 100644 index 0000000..6ecf99a --- /dev/null +++ b/android_webview/browser/browser_view_renderer_unittest.cc @@ -0,0 +1,14 @@ +// Copyright 2014 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. + +#include "android_webview/browser/test/rendering_test.h" + +namespace android_webview { + +TEST_F(RenderingTest, SmokeTest) { + SetUpTestHarness(); + RunTest(); +} + +} // namespace android_webview |