OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "ui/gfx/color_profile.h" | |
6 | |
7 namespace gfx { | |
8 | |
9 void ColorProfile::ReadProfile(gfx::NativeViewId parent_window, | |
10 std::vector<char>* profile) { | |
11 // TODO: Add support for reading linux monitor color profile. | |
12 } | |
Noel Gordon
2012/06/21 16:58:33
For reference
http://mxr.mozilla.org/mozilla-aur
tpayne
2012/07/02 19:22:32
Thanks
| |
13 | |
14 } // namespace gfx | |
15 | |
OLD | NEW |