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

Unified Diff: third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferView.h

Issue 1875343002: Move WTF classes related to typed arrays to wtf/typed_arrays (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferView.h
diff --git a/third_party/WebKit/Source/wtf/ArrayBufferView.h b/third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferView.h
similarity index 98%
rename from third_party/WebKit/Source/wtf/ArrayBufferView.h
rename to third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferView.h
index af64f26dd47e8a8991e99cdd693503ea828839eb..03c2761039bb27a4523f5ccc892d26b0d68a7490 100644
--- a/third_party/WebKit/Source/wtf/ArrayBufferView.h
+++ b/third_party/WebKit/Source/wtf/typed_arrays/ArrayBufferView.h
@@ -26,12 +26,11 @@
#ifndef ArrayBufferView_h
#define ArrayBufferView_h
-#include "wtf/ArrayBuffer.h"
-
#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
#include "wtf/RefPtr.h"
#include "wtf/WTFExport.h"
+#include "wtf/typed_arrays/ArrayBuffer.h"
#include <limits.h>
namespace WTF {
@@ -104,7 +103,7 @@ protected:
void* m_baseAddress;
unsigned m_byteOffset : 31;
- bool m_isNeuterable : 1;
+ unsigned m_isNeuterable : 1;
private:
friend class ArrayBuffer;

Powered by Google App Engine
This is Rietveld 408576698