| OLD | NEW |
| 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 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef WebLayerTreeView_h | 26 #ifndef WebLayerTreeView_h |
| 27 #define WebLayerTreeView_h | 27 #define WebLayerTreeView_h |
| 28 | 28 |
| 29 #include "WebColor.h" | 29 #include "WebColor.h" |
| 30 #include "WebCommon.h" | 30 #include "WebCommon.h" |
| 31 #include "WebCompositorMutatorClient.h" | 31 #include "WebCompositorMutatorClient.h" |
| 32 #include "WebEventListenerProperties.h" | 32 #include "WebEventListenerProperties.h" |
| 33 #include "WebFloatPoint.h" | 33 #include "WebFloatPoint.h" |
| 34 #include "WebNonCopyable.h" | |
| 35 #include "WebPrivateOwnPtr.h" | |
| 36 #include "WebSize.h" | 34 #include "WebSize.h" |
| 37 #include "WebTopControlsState.h" | 35 #include "WebTopControlsState.h" |
| 38 | 36 |
| 39 class SkBitmap; | 37 class SkBitmap; |
| 40 | 38 |
| 41 namespace cc { | 39 namespace cc { |
| 42 class AnimationTimeline; | 40 class AnimationTimeline; |
| 43 } | 41 } |
| 44 | 42 |
| 45 namespace blink { | 43 namespace blink { |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 // Toggles the debug borders on layers | 167 // Toggles the debug borders on layers |
| 170 virtual void setShowDebugBorders(bool) { } | 168 virtual void setShowDebugBorders(bool) { } |
| 171 | 169 |
| 172 // Toggles scroll bottleneck rects on the HUD layer | 170 // Toggles scroll bottleneck rects on the HUD layer |
| 173 virtual void setShowScrollBottleneckRects(bool) { } | 171 virtual void setShowScrollBottleneckRects(bool) { } |
| 174 }; | 172 }; |
| 175 | 173 |
| 176 } // namespace blink | 174 } // namespace blink |
| 177 | 175 |
| 178 #endif // WebLayerTreeView_h | 176 #endif // WebLayerTreeView_h |
| OLD | NEW |