| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 #include "platform/weborigin/KURL.h" | 46 #include "platform/weborigin/KURL.h" |
| 47 #include "skia/ext/image_operations.h" | 47 #include "skia/ext/image_operations.h" |
| 48 #include "third_party/skia/include/core/SkCanvas.h" | 48 #include "third_party/skia/include/core/SkCanvas.h" |
| 49 #include "third_party/skia/include/core/SkMatrix.h" | 49 #include "third_party/skia/include/core/SkMatrix.h" |
| 50 #include "wtf/PassOwnPtr.h" | 50 #include "wtf/PassOwnPtr.h" |
| 51 #include "wtf/RefPtr.h" | 51 #include "wtf/RefPtr.h" |
| 52 #include "wtf/text/WTFString.h" | 52 #include "wtf/text/WTFString.h" |
| 53 | 53 |
| 54 #include <algorithm> | 54 #include <algorithm> |
| 55 | 55 |
| 56 namespace WebCore { | 56 namespace blink { |
| 57 | 57 |
| 58 const float kDragLabelBorderX = 4; | 58 const float kDragLabelBorderX = 4; |
| 59 // Keep border_y in synch with DragController::LinkDragBorderInset. | 59 // Keep border_y in synch with DragController::LinkDragBorderInset. |
| 60 const float kDragLabelBorderY = 2; | 60 const float kDragLabelBorderY = 2; |
| 61 const float kLabelBorderYOffset = 2; | 61 const float kLabelBorderYOffset = 2; |
| 62 | 62 |
| 63 const float kMaxDragLabelWidth = 300; | 63 const float kMaxDragLabelWidth = 300; |
| 64 const float kMaxDragLabelStringWidth = (kMaxDragLabelWidth - 2 * kDragLabelBorde
rX); | 64 const float kMaxDragLabelStringWidth = (kMaxDragLabelWidth - 2 * kDragLabelBorde
rX); |
| 65 | 65 |
| 66 const float kDragLinkLabelFontSize = 11; | 66 const float kDragLinkLabelFontSize = 11; |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 uint32_t* pixel = m_bitmap.getAddr32(column, row); | 262 uint32_t* pixel = m_bitmap.getAddr32(column, row); |
| 263 *pixel = SkPreMultiplyARGB( | 263 *pixel = SkPreMultiplyARGB( |
| 264 SkColorGetA(*pixel) * fraction, | 264 SkColorGetA(*pixel) * fraction, |
| 265 SkColorGetR(*pixel), | 265 SkColorGetR(*pixel), |
| 266 SkColorGetG(*pixel), | 266 SkColorGetG(*pixel), |
| 267 SkColorGetB(*pixel)); | 267 SkColorGetB(*pixel)); |
| 268 } | 268 } |
| 269 } | 269 } |
| 270 } | 270 } |
| 271 | 271 |
| 272 } // namespace WebCore | 272 } // namespace blink |
| OLD | NEW |