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

Unified Diff: third_party/WebKit/Source/wtf/Uint8ClampedArray.h

Issue 1611343002: wtf reformat test Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: pydent Created 4 years, 11 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
« no previous file with comments | « third_party/WebKit/Source/wtf/Uint8Array.h ('k') | third_party/WebKit/Source/wtf/Vector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/Uint8ClampedArray.h
diff --git a/third_party/WebKit/Source/wtf/Uint8ClampedArray.h b/third_party/WebKit/Source/wtf/Uint8ClampedArray.h
index add0e4ad33fd60eea4d11c1ef907c7cde5202c5b..ea6ca6ddea69ccdbdee4c65d8f80ee923bee0757 100644
--- a/third_party/WebKit/Source/wtf/Uint8ClampedArray.h
+++ b/third_party/WebKit/Source/wtf/Uint8ClampedArray.h
@@ -34,58 +34,63 @@
namespace WTF {
class Uint8ClampedArray final : public Uint8Array {
-public:
- static inline PassRefPtr<Uint8ClampedArray> create(unsigned length);
- static inline PassRefPtr<Uint8ClampedArray> create(const unsigned char* array, unsigned length);
- static inline PassRefPtr<Uint8ClampedArray> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
+ public:
+ static inline PassRefPtr<Uint8ClampedArray> create(unsigned length);
+ static inline PassRefPtr<Uint8ClampedArray> create(const unsigned char* array,
+ unsigned length);
+ static inline PassRefPtr<Uint8ClampedArray> create(PassRefPtr<ArrayBuffer>,
+ unsigned byteOffset,
+ unsigned length);
- using TypedArrayBase<unsigned char>::set;
- inline void set(unsigned index, double value);
+ using TypedArrayBase<unsigned char>::set;
+ inline void set(unsigned index, double value);
- ViewType type() const override
- {
- return TypeUint8Clamped;
- }
+ ViewType type() const override { return TypeUint8Clamped; }
-private:
- inline Uint8ClampedArray(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
- // Make constructor visible to superclass.
- friend class TypedArrayBase<unsigned char>;
+ private:
+ inline Uint8ClampedArray(PassRefPtr<ArrayBuffer>,
+ unsigned byteOffset,
+ unsigned length);
+ // Make constructor visible to superclass.
+ friend class TypedArrayBase<unsigned char>;
};
-PassRefPtr<Uint8ClampedArray> Uint8ClampedArray::create(unsigned length)
-{
- return TypedArrayBase<unsigned char>::create<Uint8ClampedArray>(length);
+PassRefPtr<Uint8ClampedArray> Uint8ClampedArray::create(unsigned length) {
+ return TypedArrayBase<unsigned char>::create<Uint8ClampedArray>(length);
}
-PassRefPtr<Uint8ClampedArray> Uint8ClampedArray::create(const unsigned char* array, unsigned length)
-{
- return TypedArrayBase<unsigned char>::create<Uint8ClampedArray>(array, length);
+PassRefPtr<Uint8ClampedArray> Uint8ClampedArray::create(
+ const unsigned char* array,
+ unsigned length) {
+ return TypedArrayBase<unsigned char>::create<Uint8ClampedArray>(array,
+ length);
}
-PassRefPtr<Uint8ClampedArray> Uint8ClampedArray::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
-{
- return TypedArrayBase<unsigned char>::create<Uint8ClampedArray>(buffer, byteOffset, length);
+PassRefPtr<Uint8ClampedArray> Uint8ClampedArray::create(
+ PassRefPtr<ArrayBuffer> buffer,
+ unsigned byteOffset,
+ unsigned length) {
+ return TypedArrayBase<unsigned char>::create<Uint8ClampedArray>(
+ buffer, byteOffset, length);
}
-void Uint8ClampedArray::set(unsigned index, double value)
-{
- if (index >= m_length)
- return;
- if (std::isnan(value) || value < 0)
- value = 0;
- else if (value > 255)
- value = 255;
- data()[index] = static_cast<unsigned char>(lrint(value));
+void Uint8ClampedArray::set(unsigned index, double value) {
+ if (index >= m_length)
+ return;
+ if (std::isnan(value) || value < 0)
+ value = 0;
+ else if (value > 255)
+ value = 255;
+ data()[index] = static_cast<unsigned char>(lrint(value));
}
-Uint8ClampedArray::Uint8ClampedArray(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
-: Uint8Array(buffer, byteOffset, length)
-{
-}
+Uint8ClampedArray::Uint8ClampedArray(PassRefPtr<ArrayBuffer> buffer,
+ unsigned byteOffset,
+ unsigned length)
+ : Uint8Array(buffer, byteOffset, length) {}
-} // namespace WTF
+} // namespace WTF
using WTF::Uint8ClampedArray;
-#endif // Uint8ClampedArray_h
+#endif // Uint8ClampedArray_h
« no previous file with comments | « third_party/WebKit/Source/wtf/Uint8Array.h ('k') | third_party/WebKit/Source/wtf/Vector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698