Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / ui / views / examples / content_client / examples_browser_main_parts.cc
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.
4
5 #include "ui/views/examples/content_client/examples_browser_main_parts.h"
6
7 #include "base/bind.h"
8 #include "base/command_line.h"
9 #include "base/message_loop/message_loop.h"
10 #include "base/run_loop.h"
11 #include "base/strings/string_number_conversions.h"
12 #include "base/threading/thread.h"
13 #include "base/threading/thread_restrictions.h"
14 #include "content/public/common/content_switches.h"
15 #include "content/shell/browser/shell_browser_context.h"
16 #include "ui/aura/env.h"
17 #include "ui/base/ime/input_method_initializer.h"
18 #include "ui/gfx/screen.h"
19 #include "ui/views/examples/examples_window_with_content.h"
20 #include "ui/views/test/desktop_test_views_delegate.h"
21 #include "ui/views/widget/native_widget_aura.h"
22 #include "ui/wm/core/wm_state.h"
23 #include "url/gurl.h"
24
25 #if defined(OS_CHROMEOS)
26 #include "ui/aura/test/test_screen.h"
27 #include "ui/aura/window.h"
28 #include "ui/aura/window_event_dispatcher.h"
29 #include "ui/wm/test/wm_test_helper.h"
30 #else  // !defined(OS_CHROMEOS)
31 #include "ui/views/widget/desktop_aura/desktop_screen.h"
32 #endif
33
34 namespace views {
35 namespace examples {
36
37 ExamplesBrowserMainParts::ExamplesBrowserMainParts(
38     const content::MainFunctionParams& parameters) {
39 }
40
41 ExamplesBrowserMainParts::~ExamplesBrowserMainParts() {
42 }
43
44 void ExamplesBrowserMainParts::ToolkitInitialized() {
45   wm_state_.reset(new wm::WMState);
46 }
47
48 void ExamplesBrowserMainParts::PreMainMessageLoopRun() {
49   ui::InitializeInputMethodForTesting();
50   browser_context_.reset(new content::ShellBrowserContext(false, NULL));
51
52   gfx::NativeView window_context = NULL;
53 #if defined(OS_CHROMEOS)
54   gfx::Screen::SetScreenInstance(
55       gfx::SCREEN_TYPE_NATIVE, aura::TestScreen::Create());
56   // Set up basic pieces of views::corewm.
57   wm_test_helper_.reset(new wm::WMTestHelper(gfx::Size(800, 600)));
58   // Ensure the X window gets mapped.
59   wm_test_helper_->host()->Show();
60   // Ensure Aura knows where to open new windows.
61   window_context = wm_test_helper_->host()->window();
62 #else
63   aura::Env::CreateInstance(true);
64   gfx::Screen::SetScreenInstance(
65       gfx::SCREEN_TYPE_NATIVE, CreateDesktopScreen());
66 #endif
67   views_delegate_.reset(new DesktopTestViewsDelegate);
68
69   ShowExamplesWindowWithContent(
70       QUIT_ON_CLOSE, browser_context_.get(), window_context);
71 }
72
73 void ExamplesBrowserMainParts::PostMainMessageLoopRun() {
74   browser_context_.reset();
75 #if defined(OS_CHROMEOS)
76   wm_test_helper_.reset();
77 #endif
78   views_delegate_.reset();
79   aura::Env::DeleteInstance();
80 }
81
82 bool ExamplesBrowserMainParts::MainMessageLoopRun(int* result_code) {
83   base::RunLoop run_loop;
84   run_loop.Run();
85   return true;
86 }
87
88 }  // namespace examples
89 }  // namespace views