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

Side by Side Diff: Source/core/page/Chrome.cpp

Issue 1111173002: Removing blink::prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Incorporating Review Comments Created 5 years, 7 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
« no previous file with comments | « Source/core/page/Chrome.h ('k') | Source/core/page/ChromeClient.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2009, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2009, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2008, 2010 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2008, 2010 Nokia Corporation and/or its subsidiary(-ies)
4 * Copyright (C) 2012, Samsung Electronics. All rights reserved. 4 * Copyright (C) 2012, Samsung Electronics. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 void Chrome::invalidateRect(const IntRect& updateRect) 67 void Chrome::invalidateRect(const IntRect& updateRect)
68 { 68 {
69 m_client->invalidateRect(updateRect); 69 m_client->invalidateRect(updateRect);
70 } 70 }
71 71
72 IntRect Chrome::viewportToScreen(const IntRect& rect) const 72 IntRect Chrome::viewportToScreen(const IntRect& rect) const
73 { 73 {
74 return m_client->viewportToScreen(rect); 74 return m_client->viewportToScreen(rect);
75 } 75 }
76 76
77 blink::WebScreenInfo Chrome::screenInfo() const 77 WebScreenInfo Chrome::screenInfo() const
78 { 78 {
79 return m_client->screenInfo(); 79 return m_client->screenInfo();
80 } 80 }
81 81
82 void Chrome::contentsSizeChanged(LocalFrame* frame, const IntSize& size) const 82 void Chrome::contentsSizeChanged(LocalFrame* frame, const IntSize& size) const
83 { 83 {
84 m_client->contentsSizeChanged(frame, size); 84 m_client->contentsSizeChanged(frame, size);
85 } 85 }
86 86
87 void Chrome::setWindowRect(const IntRect& rect) const 87 void Chrome::setWindowRect(const IntRect& rect) const
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
388 { 388 {
389 m_client->registerViewportLayers(); 389 m_client->registerViewportLayers();
390 } 390 }
391 391
392 void Chrome::willBeDestroyed() 392 void Chrome::willBeDestroyed()
393 { 393 {
394 m_client->chromeDestroyed(); 394 m_client->chromeDestroyed();
395 } 395 }
396 396
397 } // namespace blink 397 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/page/Chrome.h ('k') | Source/core/page/ChromeClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698