| OLD | NEW |
| 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 * * Redistributions of source code must retain the above copyright | 7 * * Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * * Redistributions in binary form must reproduce the above | 9 * * Redistributions in binary form must reproduce the above |
| 10 * copyright notice, this list of conditions and the following disclaimer | 10 * copyright notice, this list of conditions and the following disclaimer |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 #ifndef Canvas2DContextAttributes_h | 27 #ifndef Canvas2DContextAttributes_h |
| 28 #define Canvas2DContextAttributes_h | 28 #define Canvas2DContextAttributes_h |
| 29 | 29 |
| 30 #include "bindings/v8/ScriptWrappable.h" | 30 #include "bindings/v8/ScriptWrappable.h" |
| 31 #include "core/html/canvas/CanvasContextAttributes.h" | 31 #include "core/html/canvas/CanvasContextAttributes.h" |
| 32 #include "wtf/PassRefPtr.h" | 32 #include "wtf/PassRefPtr.h" |
| 33 | 33 |
| 34 namespace WebCore { | 34 namespace WebCore { |
| 35 | 35 |
| 36 enum Canvas2DContextStorage { |
| 37 PersistentStorage, |
| 38 DiscardableStorage |
| 39 }; |
| 40 |
| 36 class Canvas2DContextAttributes : public CanvasContextAttributes, public ScriptW
rappable { | 41 class Canvas2DContextAttributes : public CanvasContextAttributes, public ScriptW
rappable { |
| 37 public: | 42 public: |
| 38 virtual ~Canvas2DContextAttributes(); | 43 virtual ~Canvas2DContextAttributes(); |
| 39 | 44 |
| 40 // Create a new attributes object | 45 // Create a new attributes object |
| 41 static PassRefPtr<Canvas2DContextAttributes> create(); | 46 static PassRefPtr<Canvas2DContextAttributes> create(); |
| 42 | 47 |
| 43 // Whether or not the drawing buffer has an alpha channel; default=true | 48 // Whether or not the drawing buffer has an alpha channel; default=true |
| 44 bool alpha() const; | 49 bool alpha() const; |
| 45 void setAlpha(bool); | 50 void setAlpha(bool); |
| 46 | 51 |
| 52 String storage() const; |
| 53 void setStorage(const String&); |
| 54 Canvas2DContextStorage parsedStorage() const; |
| 55 |
| 47 protected: | 56 protected: |
| 48 Canvas2DContextAttributes(); | 57 Canvas2DContextAttributes(); |
| 49 | 58 |
| 50 bool m_alpha; | 59 bool m_alpha; |
| 60 Canvas2DContextStorage m_storage; |
| 51 }; | 61 }; |
| 52 | 62 |
| 53 } // namespace WebCore | 63 } // namespace WebCore |
| 54 | 64 |
| 55 #endif // Canvas2DContextAttributes_h | 65 #endif // Canvas2DContextAttributes_h |
| OLD | NEW |