| Index: content/test/layouttest_support.cc
|
| diff --git a/content/test/layouttest_support.cc b/content/test/layouttest_support.cc
|
| index 0caf15c31ba7a033a3e05ac9009ad7a5cd53fbaf..7e2a5beb5701ccc01fd3b6d3b5f7b94693b22212 100644
|
| --- a/content/test/layouttest_support.cc
|
| +++ b/content/test/layouttest_support.cc
|
| @@ -361,7 +361,7 @@ void SetDeviceColorProfile(RenderView* render_view, const std::string& name) {
|
|
|
| std::vector<char> color_profile;
|
|
|
| - struct TestColorProfile { // A whacked (aka color spin) profile.
|
| + struct TestColorProfile { // A color spin profile.
|
| char* data() {
|
| static unsigned char color_profile_data[] = {
|
| 0x00,0x00,0x01,0xea,0x54,0x45,0x53,0x54,0x00,0x00,0x00,0x00,
|
| @@ -479,7 +479,7 @@ void SetDeviceColorProfile(RenderView* render_view, const std::string& name) {
|
|
|
| if (name == "sRGB") {
|
| color_profile.assign(name.data(), name.data() + name.size());
|
| - } else if (name == "test" || name == "whacked") {
|
| + } else if (name == "test" || name == "colorSpin") {
|
| TestColorProfile test;
|
| color_profile.assign(test.data(), test.data() + test.size());
|
| } else if (name == "adobeRGB") {
|
|
|