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

Side by Side Diff: third_party/WebKit/Source/core/frame/FrameHost.cpp

Issue 1648593002: Revert of Add deprecation message for -webkit-background-composite (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 ChromeClient& FrameHost::chromeClient() const 69 ChromeClient& FrameHost::chromeClient() const
70 { 70 {
71 return m_page->chromeClient(); 71 return m_page->chromeClient();
72 } 72 }
73 73
74 UseCounter& FrameHost::useCounter() const 74 UseCounter& FrameHost::useCounter() const
75 { 75 {
76 return m_page->useCounter(); 76 return m_page->useCounter();
77 } 77 }
78 78
79 Deprecation& FrameHost::deprecation() const
80 {
81 return m_page->deprecation();
82 }
83
84 float FrameHost::deviceScaleFactor() const 79 float FrameHost::deviceScaleFactor() const
85 { 80 {
86 return m_page->deviceScaleFactor(); 81 return m_page->deviceScaleFactor();
87 } 82 }
88 83
89 TopControls& FrameHost::topControls() const 84 TopControls& FrameHost::topControls() const
90 { 85 {
91 return *m_topControls; 86 return *m_topControls;
92 } 87 }
93 88
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 172
178 FrameView* rootView = page().deprecatedLocalMainFrame()->view(); 173 FrameView* rootView = page().deprecatedLocalMainFrame()->view();
179 174
180 if (!rootView) 175 if (!rootView)
181 return; 176 return;
182 177
183 rootView->setNeedsLayout(); 178 rootView->setNeedsLayout();
184 } 179 }
185 180
186 } // namespace blink 181 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/FrameHost.h ('k') | third_party/WebKit/Source/core/frame/UseCounter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698