| 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 21 matching lines...) Expand all Loading... |
| 32 #include "WebDoublePoint.h" | 32 #include "WebDoublePoint.h" |
| 33 #include "WebFloatPoint3D.h" | 33 #include "WebFloatPoint3D.h" |
| 34 #include "WebFloatSize.h" | 34 #include "WebFloatSize.h" |
| 35 #include "WebPoint.h" | 35 #include "WebPoint.h" |
| 36 #include "WebRect.h" | 36 #include "WebRect.h" |
| 37 #include "WebSize.h" | 37 #include "WebSize.h" |
| 38 #include "WebString.h" | 38 #include "WebString.h" |
| 39 #include "WebVector.h" | 39 #include "WebVector.h" |
| 40 | 40 |
| 41 class SkMatrix44; | 41 class SkMatrix44; |
| 42 class SkImageFilter; | |
| 43 | 42 |
| 44 namespace cc { | 43 namespace cc { |
| 45 class Layer; | 44 class Layer; |
| 46 class LayerClient; | 45 class LayerClient; |
| 47 class FilterOperations; | 46 class FilterOperations; |
| 48 struct ElementId; | 47 struct ElementId; |
| 49 } | 48 } |
| 50 | 49 |
| 51 namespace blink { | 50 namespace blink { |
| 52 | 51 |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 virtual uint32_t compositorMutableProperties() const = 0; | 218 virtual uint32_t compositorMutableProperties() const = 0; |
| 220 | 219 |
| 221 virtual void setHasWillChangeTransformHint(bool) = 0; | 220 virtual void setHasWillChangeTransformHint(bool) = 0; |
| 222 virtual void setPreferredRasterBounds(const WebSize&) = 0; | 221 virtual void setPreferredRasterBounds(const WebSize&) = 0; |
| 223 virtual void clearPreferredRasterBounds() = 0; | 222 virtual void clearPreferredRasterBounds() = 0; |
| 224 }; | 223 }; |
| 225 | 224 |
| 226 } // namespace blink | 225 } // namespace blink |
| 227 | 226 |
| 228 #endif // WebLayer_h | 227 #endif // WebLayer_h |
| OLD | NEW |