| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/bind_helpers.h" | 5 #include "base/bind_helpers.h" |
| 6 #include "base/logging.h" | 6 #include "base/logging.h" |
| 7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
| 8 #include "content/browser/browser_plugin/browser_plugin_guest.h" | 8 #include "content/browser/browser_plugin/browser_plugin_guest.h" |
| 9 #include "content/browser/renderer_host/render_view_host_impl.h" | 9 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 10 #include "content/browser/renderer_host/render_widget_host_view_guest.h" | 10 #include "content/browser/renderer_host/render_widget_host_view_guest.h" |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 void RenderWidgetHostViewGuest::DestroyPluginContainer( | 355 void RenderWidgetHostViewGuest::DestroyPluginContainer( |
| 356 gfx::PluginWindowHandle id) { | 356 gfx::PluginWindowHandle id) { |
| 357 } | 357 } |
| 358 #endif // defined(TOOLKIT_GTK) | 358 #endif // defined(TOOLKIT_GTK) |
| 359 | 359 |
| 360 #if defined(OS_WIN) && !defined(USE_AURA) | 360 #if defined(OS_WIN) && !defined(USE_AURA) |
| 361 void RenderWidgetHostViewGuest::WillWmDestroy() { | 361 void RenderWidgetHostViewGuest::WillWmDestroy() { |
| 362 } | 362 } |
| 363 #endif | 363 #endif |
| 364 | 364 |
| 365 #if defined(OS_POSIX) || defined(USE_AURA) | |
| 366 void RenderWidgetHostViewGuest::GetScreenInfo(WebKit::WebScreenInfo* results) { | 365 void RenderWidgetHostViewGuest::GetScreenInfo(WebKit::WebScreenInfo* results) { |
| 367 } | 366 } |
| 368 #endif // defined(OS_POSIX) || defined(USE_AURA) | |
| 369 | 367 |
| 370 } // namespace content | 368 } // namespace content |
| OLD | NEW |