From f9ab015b7595475ec5d0f92af30aac5bc64f31af Mon Sep 17 00:00:00 2001 From: "andersca@apple.com" Date: Sat, 9 Nov 2013 23:26:58 +0000 Subject: [PATCH] Remove an unused file. Rubber-stamped by Andreas Kling. * WebProcess/WebPage/gtk/ChunkedUpdateDrawingAreaGtk.cpp: Removed. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@159003 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Source/WebKit2/ChangeLog | 8 +++ .../gtk/ChunkedUpdateDrawingAreaGtk.cpp | 56 ------------------- 2 files changed, 8 insertions(+), 56 deletions(-) delete mode 100644 Source/WebKit2/WebProcess/WebPage/gtk/ChunkedUpdateDrawingAreaGtk.cpp diff --git a/Source/WebKit2/ChangeLog b/Source/WebKit2/ChangeLog index 7e0102bbf1c..7d371db4a69 100644 --- a/Source/WebKit2/ChangeLog +++ b/Source/WebKit2/ChangeLog @@ -1,3 +1,11 @@ +2013-11-09 Anders Carlsson + + Remove an unused file. + + Rubber-stamped by Andreas Kling. + + * WebProcess/WebPage/gtk/ChunkedUpdateDrawingAreaGtk.cpp: Removed. + 2013-11-09 Patrick Gansterer Move RunLoop from WebCore to WTF diff --git a/Source/WebKit2/WebProcess/WebPage/gtk/ChunkedUpdateDrawingAreaGtk.cpp b/Source/WebKit2/WebProcess/WebPage/gtk/ChunkedUpdateDrawingAreaGtk.cpp deleted file mode 100644 index 962df58edac..00000000000 --- a/Source/WebKit2/WebProcess/WebPage/gtk/ChunkedUpdateDrawingAreaGtk.cpp +++ /dev/null @@ -1,56 +0,0 @@ -/* - * Copyright (C) 2010 Apple Inc. All rights reserved. - * Portions Copyright (c) 2010 Motorola Mobility, Inc. All rights reserved. - * Copyright (C) 2011 Igalia S.L. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the - * documentation and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, - * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS - * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF - * THE POSSIBILITY OF SUCH DAMAGE. - */ - -#include "config.h" -#include "ChunkedUpdateDrawingArea.h" - -#include "RefPtrCairo.h" -#include "UpdateChunk.h" -#include "WebPage.h" - -#include -#include - -using namespace WebCore; - -namespace WebKit { - -void ChunkedUpdateDrawingArea::paintIntoUpdateChunk(UpdateChunk* updateChunk) -{ - ASSERT(!updateChunk->isEmpty()); - - RefPtr image = updateChunk->createImage(); - RefPtr cr = adoptRef(cairo_create(image.get())); - GraphicsContext gc(cr.get()); - gc.save(); - IntRect rect = updateChunk->rect(); - gc.translate(-rect.x(), -rect.y()); - m_webPage->drawRect(gc, updateChunk->rect()); - gc.restore(); -} - -} // namespace WebKit -- GitLab