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 1367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1378 } | 1378 } |
1379 | 1379 |
1380 void RenderWidgetHostViewAura::OnWindowDestroying() { | 1380 void RenderWidgetHostViewAura::OnWindowDestroying() { |
1381 } | 1381 } |
1382 | 1382 |
1383 void RenderWidgetHostViewAura::OnWindowDestroyed() { | 1383 void RenderWidgetHostViewAura::OnWindowDestroyed() { |
1384 host_->ViewDestroyed(); | 1384 host_->ViewDestroyed(); |
1385 delete this; | 1385 delete this; |
1386 } | 1386 } |
1387 | 1387 |
1388 void RenderWidgetHostViewAura::OnWindowVisibilityChanged(bool visible) { | 1388 void RenderWidgetHostViewAura::OnWindowTargetVisibilityChanged(bool visible) { |
1389 } | 1389 } |
1390 | 1390 |
1391 bool RenderWidgetHostViewAura::HasHitTestMask() const { | 1391 bool RenderWidgetHostViewAura::HasHitTestMask() const { |
1392 return false; | 1392 return false; |
1393 } | 1393 } |
1394 | 1394 |
1395 void RenderWidgetHostViewAura::GetHitTestMask(gfx::Path* mask) const { | 1395 void RenderWidgetHostViewAura::GetHitTestMask(gfx::Path* mask) const { |
1396 } | 1396 } |
1397 | 1397 |
1398 //////////////////////////////////////////////////////////////////////////////// | 1398 //////////////////////////////////////////////////////////////////////////////// |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1654 RenderWidgetHost* widget) { | 1654 RenderWidgetHost* widget) { |
1655 return new RenderWidgetHostViewAura(widget); | 1655 return new RenderWidgetHostViewAura(widget); |
1656 } | 1656 } |
1657 | 1657 |
1658 // static | 1658 // static |
1659 void RenderWidgetHostViewPort::GetDefaultScreenInfo(WebScreenInfo* results) { | 1659 void RenderWidgetHostViewPort::GetDefaultScreenInfo(WebScreenInfo* results) { |
1660 GetScreenInfoForWindow(results, NULL); | 1660 GetScreenInfoForWindow(results, NULL); |
1661 } | 1661 } |
1662 | 1662 |
1663 } // namespace content | 1663 } // namespace content |
OLD | NEW |