Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(521)

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_aura.cc

Issue 10796106: aura: Rename OnWindowVisisbilityChanged() to OnWindowTargetVisibilityChanged(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_aura.h ('k') | content/browser/web_contents/web_contents_view_aura.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698