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

Side by Side Diff: third_party/WebKit/public/platform/WebLayerTreeView.h

Issue 2443613002: Rename classes related to top controls (Closed)
Patch Set: fix test Created 4 years, 1 month 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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the 11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution. 12 * documentation and/or other materials provided with the distribution.
13 * 13 *
14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY 14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY 17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef WebLayerTreeView_h 26 #ifndef WebLayerTreeView_h
27 #define WebLayerTreeView_h 27 #define WebLayerTreeView_h
28 28
29 #include "WebBrowserControlsState.h"
29 #include "WebColor.h" 30 #include "WebColor.h"
30 #include "WebCommon.h" 31 #include "WebCommon.h"
31 #include "WebCompositorMutatorClient.h" 32 #include "WebCompositorMutatorClient.h"
32 #include "WebEventListenerProperties.h" 33 #include "WebEventListenerProperties.h"
33 #include "WebFloatPoint.h" 34 #include "WebFloatPoint.h"
34 #include "WebSize.h" 35 #include "WebSize.h"
35 #include "WebTopControlsState.h"
36 36
37 class SkBitmap; 37 class SkBitmap;
38 38
39 namespace cc { 39 namespace cc {
40 class AnimationTimeline; 40 class AnimationTimeline;
41 } 41 }
42 42
43 namespace blink { 43 namespace blink {
44 44
45 class WebCompositeAndReadbackAsyncCallback; 45 class WebCompositeAndReadbackAsyncCallback;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 virtual void startPageScaleAnimation(const WebPoint& destination, 97 virtual void startPageScaleAnimation(const WebPoint& destination,
98 bool useAnchor, 98 bool useAnchor,
99 float newPageScale, 99 float newPageScale,
100 double durationSec) {} 100 double durationSec) {}
101 101
102 // Returns true if the page scale animation had started. 102 // Returns true if the page scale animation had started.
103 virtual bool hasPendingPageScaleAnimation() const { return false; } 103 virtual bool hasPendingPageScaleAnimation() const { return false; }
104 104
105 virtual void heuristicsForGpuRasterizationUpdated(bool) {} 105 virtual void heuristicsForGpuRasterizationUpdated(bool) {}
106 106
107 // Sets the amount that the top controls are showing, from 0 (hidden) to 1 107 // Sets the amount that the browser controls are showing, from 0 (hidden) to 1
108 // (fully shown). 108 // (fully shown).
109 virtual void setTopControlsShownRatio(float) {} 109 virtual void setBrowserControlsShownRatio(float) {}
110 110
111 // Update top controls permitted and current states 111 // Update browser controls permitted and current states
112 virtual void updateTopControlsState(WebTopControlsState constraints, 112 virtual void updateBrowserControlsState(WebBrowserControlsState constraints,
113 WebTopControlsState current, 113 WebBrowserControlsState current,
114 bool animate) {} 114 bool animate) {}
115 115
116 // Set top controls height. If |shrinkViewport| is set to true, then Blink 116 // Set browser controls height. If |shrinkViewport| is set to true, then Blink
117 // shrunk the viewport clip layers by the top controls height. 117 // shrunk the viewport clip layers by the browser controls height.
118 virtual void setTopControlsHeight(float height, bool shrinkViewport) {} 118 virtual void setBrowserControlsHeight(float height, bool shrinkViewport) {}
119 119
120 // Flow control and scheduling --------------------------------------- 120 // Flow control and scheduling ---------------------------------------
121 121
122 // Indicates that blink needs a BeginFrame, but that nothing might actually be 122 // Indicates that blink needs a BeginFrame, but that nothing might actually be
123 // dirty. 123 // dirty.
124 virtual void setNeedsBeginFrame() {} 124 virtual void setNeedsBeginFrame() {}
125 125
126 // Indicates that blink needs a BeginFrame and to update compositor state. 126 // Indicates that blink needs a BeginFrame and to update compositor state.
127 virtual void setNeedsCompositorUpdate() {} 127 virtual void setNeedsCompositorUpdate() {}
128 128
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 // Toggles the debug borders on layers 186 // Toggles the debug borders on layers
187 virtual void setShowDebugBorders(bool) {} 187 virtual void setShowDebugBorders(bool) {}
188 188
189 // Toggles scroll bottleneck rects on the HUD layer 189 // Toggles scroll bottleneck rects on the HUD layer
190 virtual void setShowScrollBottleneckRects(bool) {} 190 virtual void setShowScrollBottleneckRects(bool) {}
191 }; 191 };
192 192
193 } // namespace blink 193 } // namespace blink
194 194
195 #endif // WebLayerTreeView_h 195 #endif // WebLayerTreeView_h
OLDNEW
« no previous file with comments | « third_party/WebKit/public/platform/WebBrowserControlsState.h ('k') | third_party/WebKit/public/platform/WebTopControlsState.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698