| Index: third_party/WebKit/Source/platform/graphics/ColorSpaceProfileData.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/ColorSpaceProfileData.cpp b/third_party/WebKit/Source/platform/graphics/ColorSpaceProfileData.cpp
|
| index 0c3cd7697d2593c9524556c0825a283fd5f502e6..763efe5517dc8083d46c68cf1981f17fcf5d26ab 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/ColorSpaceProfileData.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/ColorSpaceProfileData.cpp
|
| @@ -6,7 +6,7 @@
|
|
|
| #include "wtf/Assertions.h"
|
|
|
| -#if USE(SKCOLORXFORM)
|
| +#if USE(QCMSLIB)
|
|
|
| struct bt709ColorProfile {
|
| static char* data() // BT.709 HDTV ITU
|
| @@ -94,11 +94,11 @@
|
| static size_t size() { return 380u; }
|
| };
|
|
|
| -#endif // USE(SKCOLORXFORM)
|
| +#endif // USE(QCMSLIB)
|
|
|
| namespace blink {
|
|
|
| -#if USE(SKCOLORXFORM)
|
| +#if USE(QCMSLIB)
|
|
|
| void bt709ColorProfileData(Vector<char>& data) {
|
| ASSERT(WTF::isMainThread() && data.isEmpty());
|
| @@ -122,6 +122,6 @@
|
| ASSERT_NOT_REACHED();
|
| }
|
|
|
| -#endif // USE(SKCOLORXFORM)
|
| +#endif // USE(QCMSLIB)
|
|
|
| } // namespace blink
|
|
|