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

Side by Side Diff: ui/gfx/test/icc_profiles.cc

Issue 2898583002: color: Fix color not being reset between layout tests (Closed)
Patch Set: Review feedbakc Created 3 years, 7 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
« no previous file with comments | « ui/gfx/test/icc_profiles.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 #include "ui/gfx/test/icc_profiles.h" 5 #include "ui/gfx/test/icc_profiles.h"
6 6
7 namespace gfx { 7 namespace gfx {
8 8
9 namespace { 9 namespace {
10 10
(...skipping 1917 matching lines...) Expand 10 before | Expand all | Expand 10 after
1928 reinterpret_cast<const char*>(a2b_only_profile_data), 1928 reinterpret_cast<const char*>(a2b_only_profile_data),
1929 arraysize(a2b_only_profile_data), ICCProfile::test_id_a2b_only_); 1929 arraysize(a2b_only_profile_data), ICCProfile::test_id_a2b_only_);
1930 } 1930 }
1931 1931
1932 ICCProfile ICCProfileForTestingOvershoot() { 1932 ICCProfile ICCProfileForTestingOvershoot() {
1933 return ICCProfile::FromDataWithId( 1933 return ICCProfile::FromDataWithId(
1934 reinterpret_cast<const char*>(overshoot_profile_data), 1934 reinterpret_cast<const char*>(overshoot_profile_data),
1935 arraysize(overshoot_profile_data), ICCProfile::test_id_overshoot_); 1935 arraysize(overshoot_profile_data), ICCProfile::test_id_overshoot_);
1936 } 1936 }
1937 1937
1938 ICCProfile ICCProfileForLayoutTests() {
1939 return ICCProfile::GetForcedProfile();
1940 }
1941
1938 } // namespace gfx 1942 } // namespace gfx
OLDNEW
« no previous file with comments | « ui/gfx/test/icc_profiles.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698