| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Samsung Electronics. All rights reserved. | 3 * Copyright (C) 2013 Samsung Electronics. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 m_context = paintInfo.context; | 133 m_context = paintInfo.context; |
| 134 m_context->beginAnnotation(annotations); | 134 m_context->beginAnnotation(annotations); |
| 135 } | 135 } |
| 136 | 136 |
| 137 void GraphicsContextAnnotator::finishAnnotation() | 137 void GraphicsContextAnnotator::finishAnnotation() |
| 138 { | 138 { |
| 139 ASSERT(m_context); | 139 ASSERT(m_context); |
| 140 m_context->endAnnotation(); | 140 m_context->endAnnotation(); |
| 141 } | 141 } |
| 142 | 142 |
| 143 } | 143 } // namespace blink |
| OLD | NEW |