Changeset 149895 in webkit


Ignore:
Timestamp:
May 10, 2013 11:39:53 AM (11 years ago)
Author:
zandobersek@gmail.com
Message:

[GTK] Remove unnecessary includes in WidgetGtk.cpp
https://bugs.webkit.org/show_bug.cgi?id=115912

Reviewed by Andreas Kling.

No new tests - no new functionality.

  • platform/gtk/WidgetGtk.cpp: Remove the unnecessary includes of the Chrome.h, Frame.h, FrameView.h,

Page.h and RenderObject.h headers as the included declarations are not used anywhere. ScrollView.h is
included instead as it is required and was previously included by one of the removed header inclusions.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r149894 r149895  
     12013-05-10  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK] Remove unnecessary includes in WidgetGtk.cpp
     4        https://bugs.webkit.org/show_bug.cgi?id=115912
     5
     6        Reviewed by Andreas Kling.
     7
     8        No new tests - no new functionality.
     9
     10        * platform/gtk/WidgetGtk.cpp: Remove the unnecessary includes of the Chrome.h, Frame.h, FrameView.h,
     11        Page.h and RenderObject.h headers as the included declarations are not used anywhere. ScrollView.h is
     12        included instead as it is required and was previously included by one of the removed header inclusions.
     13
    1142013-05-10  Zan Dobersek  <zdobersek@igalia.com>
    215
  • trunk/Source/WebCore/platform/gtk/WidgetGtk.cpp

    r108278 r149895  
    2929#include "Widget.h"
    3030
    31 #include "Chrome.h"
    3231#include "Cursor.h"
    33 #include "Frame.h"
    34 #include "FrameView.h"
    3532#include "GraphicsContext.h"
    3633#include "GtkVersioning.h"
    3734#include "HostWindow.h"
    3835#include "IntRect.h"
    39 #include "Page.h"
    40 #include "RenderObject.h"
     36#include "ScrollView.h"
    4137
    4238#include <gdk/gdk.h>
Note: See TracChangeset for help on using the changeset viewer.