| OLD | NEW |
| 1 /* | 1 /* |
| 2 * CSS Media Query Evaluator | 2 * CSS Media Query Evaluator |
| 3 * | 3 * |
| 4 * Copyright (C) 2006 Kimmo Kinnunen <kimmo.t.kinnunen@nokia.com>. | 4 * Copyright (C) 2006 Kimmo Kinnunen <kimmo.t.kinnunen@nokia.com>. |
| 5 * Copyright (C) 2013 Apple Inc. All rights reserved. | 5 * Copyright (C) 2013 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2013 Intel Corporation. All rights reserved. | 6 * Copyright (C) 2013 Intel Corporation. All rights reserved. |
| 7 * | 7 * |
| 8 * Redistribution and use in source and binary forms, with or without | 8 * Redistribution and use in source and binary forms, with or without |
| 9 * modification, are permitted provided that the following conditions | 9 * modification, are permitted provided that the following conditions |
| 10 * are met: | 10 * are met: |
| (...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 | 664 |
| 665 // Call the media feature evaluation function. Assume no prefix and let | 665 // Call the media feature evaluation function. Assume no prefix and let |
| 666 // trampoline functions override the prefix if prefix is used. | 666 // trampoline functions override the prefix if prefix is used. |
| 667 EvalFunc func = gFunctionMap->get(expr->mediaFeature().impl()); | 667 EvalFunc func = gFunctionMap->get(expr->mediaFeature().impl()); |
| 668 if (func) | 668 if (func) |
| 669 return func(expr->expValue(), NoPrefix, *m_mediaValues); | 669 return func(expr->expValue(), NoPrefix, *m_mediaValues); |
| 670 | 670 |
| 671 return false; | 671 return false; |
| 672 } | 672 } |
| 673 | 673 |
| 674 } // namespace | 674 } // namespace blink |
| OLD | NEW |