| 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 "content/browser/renderer_host/render_widget_host_view_aura.h" | 5 #include "content/browser/renderer_host/render_widget_host_view_aura.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/debug/trace_event.h" | 10 #include "base/debug/trace_event.h" |
| (...skipping 1212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1223 } | 1223 } |
| 1224 | 1224 |
| 1225 void RenderWidgetHostViewAura::OnWindowDestroying() { | 1225 void RenderWidgetHostViewAura::OnWindowDestroying() { |
| 1226 } | 1226 } |
| 1227 | 1227 |
| 1228 void RenderWidgetHostViewAura::OnWindowDestroyed() { | 1228 void RenderWidgetHostViewAura::OnWindowDestroyed() { |
| 1229 host_->ViewDestroyed(); | 1229 host_->ViewDestroyed(); |
| 1230 delete this; | 1230 delete this; |
| 1231 } | 1231 } |
| 1232 | 1232 |
| 1233 void RenderWidgetHostViewAura::OnWindowVisibilityChanged(bool visible) { | 1233 void RenderWidgetHostViewAura::OnWindowTargetVisibilityChanged(bool visible) { |
| 1234 } | 1234 } |
| 1235 | 1235 |
| 1236 bool RenderWidgetHostViewAura::HasHitTestMask() const { | 1236 bool RenderWidgetHostViewAura::HasHitTestMask() const { |
| 1237 return false; | 1237 return false; |
| 1238 } | 1238 } |
| 1239 | 1239 |
| 1240 void RenderWidgetHostViewAura::GetHitTestMask(gfx::Path* mask) const { | 1240 void RenderWidgetHostViewAura::GetHitTestMask(gfx::Path* mask) const { |
| 1241 } | 1241 } |
| 1242 | 1242 |
| 1243 //////////////////////////////////////////////////////////////////////////////// | 1243 //////////////////////////////////////////////////////////////////////////////// |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1492 RenderWidgetHost* widget) { | 1492 RenderWidgetHost* widget) { |
| 1493 return new RenderWidgetHostViewAura(widget); | 1493 return new RenderWidgetHostViewAura(widget); |
| 1494 } | 1494 } |
| 1495 | 1495 |
| 1496 // static | 1496 // static |
| 1497 void RenderWidgetHostViewPort::GetDefaultScreenInfo(WebScreenInfo* results) { | 1497 void RenderWidgetHostViewPort::GetDefaultScreenInfo(WebScreenInfo* results) { |
| 1498 GetScreenInfoForWindow(results, NULL); | 1498 GetScreenInfoForWindow(results, NULL); |
| 1499 } | 1499 } |
| 1500 | 1500 |
| 1501 } // namespace content | 1501 } // namespace content |
| OLD | NEW |