| Index: ui/aura/window_tree_host.cc
|
| diff --git a/ui/aura/window_tree_host.cc b/ui/aura/window_tree_host.cc
|
| index f4fcbb88ac90862c48fedf16d5af6fb59d45be92..981f0a93c875c3d3cfe5f887a31c536ed90b9a19 100644
|
| --- a/ui/aura/window_tree_host.cc
|
| +++ b/ui/aura/window_tree_host.cc
|
| @@ -190,4 +190,15 @@ void WindowTreeHost::NotifyHostResized(const gfx::Size& new_size) {
|
| delegate_->OnHostResized(new_size);
|
| }
|
|
|
| +#if defined(OS_ANDROID)
|
| +// static
|
| +WindowTreeHost* WindowTreeHost::Create(const gfx::Rect& bounds) {
|
| + // This is only hit for tests and ash, right now these aren't an issue so
|
| + // adding the CHECK.
|
| + // TODO(sky): decide if we want a factory.
|
| + CHECK(false);
|
| + return NULL;
|
| +}
|
| +#endif
|
| +
|
| } // namespace aura
|
|
|