Automated Commit: Committing new LKGM version 7479.0.0 for chromeos.
[chromium-blink-merge.git] / ui / views / test / webview_test_helper.h
blobc0fbdbfbb2b41396260d57fcf9231ea2889cbf9e
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef UI_VIEWS_TEST_WEB_VIEW_TEST_HELPER_H_
6 #define UI_VIEWS_TEST_WEB_VIEW_TEST_HELPER_H_
8 #include "base/memory/scoped_ptr.h"
10 namespace base {
11 class MessageLoopForUI;
14 namespace content {
15 class TestContentClientInitializer;
16 } // namespace content
18 namespace views {
20 class WebViewTestHelper {
21 public:
22 WebViewTestHelper();
23 virtual ~WebViewTestHelper();
25 private:
26 scoped_ptr<content::TestContentClientInitializer>
27 test_content_client_initializer_;
29 DISALLOW_COPY_AND_ASSIGN(WebViewTestHelper);
32 } // namespace views
34 #endif // UI_VIEWS_TEST_WEB_VIEW_TEST_HELPER_H_