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

Side by Side Diff: third_party/WebKit/Source/core/geometry/DOMMatrix.h

Issue 2815793002: [SharedArrayBuffer] Add "AllowShared" extended attribute, used for WebGL (Closed)
Patch Set: merge HEAD Created 3 years, 8 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef DOMMatrix_h 5 #ifndef DOMMatrix_h
6 #define DOMMatrix_h 6 #define DOMMatrix_h
7 7
8 #include "bindings/core/v8/ExceptionState.h" 8 #include "bindings/core/v8/ExceptionState.h"
9 #include "core/dom/NotShared.h" 9 #include "core/dom/ArrayBufferViewHelpers.h"
10 #include "core/geometry/DOMMatrixInit.h" 10 #include "core/geometry/DOMMatrixInit.h"
11 #include "core/geometry/DOMMatrixReadOnly.h" 11 #include "core/geometry/DOMMatrixReadOnly.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 class CORE_EXPORT DOMMatrix : public DOMMatrixReadOnly { 15 class CORE_EXPORT DOMMatrix : public DOMMatrixReadOnly {
16 DEFINE_WRAPPERTYPEINFO(); 16 DEFINE_WRAPPERTYPEINFO();
17 17
18 public: 18 public:
19 static DOMMatrix* Create(ExceptionState&); 19 static DOMMatrix* Create(ExceptionState&);
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 template <typename T> 115 template <typename T>
116 DOMMatrix(T sequence, int size); 116 DOMMatrix(T sequence, int size);
117 117
118 void SetIs2D(bool value); 118 void SetIs2D(bool value);
119 void SetNAN(); 119 void SetNAN();
120 }; 120 };
121 121
122 } // namespace blink 122 } // namespace blink
123 123
124 #endif 124 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/NotShared.h ('k') | third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698