Changeset 55158 in webkit


Ignore:
Timestamp:
Feb 23, 2010 9:52:40 AM (14 years ago)
Author:
kov@webkit.org
Message:

2010-02-23 Leandro Pereira <leandro@profusion.mobi>

Reviewed by Gustavo Noronha Silva.

Changes references of GOwnPtr to reflect their new place.
http://webkit.org/b/35084

Location:
trunk
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r55150 r55158  
     12010-02-23  Leandro Pereira  <leandro@profusion.mobi>
     2
     3        Reviewed by Gustavo Noronha Silva.
     4
     5        Changes references of GOwnPtr to reflect their new place.
     6        http://webkit.org/b/35084
     7
     8        * JavaScriptCore/JavaScriptCore.gypi:
     9        * JavaScriptCore/wtf/Threading.h:
     10        * JavaScriptCore/wtf/unicode/glib/UnicodeGLib.h:
     11
    1122010-02-23  Leandro Pereira  <leandro@profusion.mobi>
    213
  • trunk/JavaScriptCore/ChangeLog

    r55149 r55158  
     12010-02-23  Leandro Pereira  <leandro@profusion.mobi>
     2
     3        Reviewed by Gustavo Noronha Silva.
     4
     5        Changes references of GOwnPtr to reflect their new place.
     6        http://webkit.org/b/35084
     7
     8        * JavaScriptCore/JavaScriptCore.gypi:
     9        * JavaScriptCore/wtf/Threading.h:
     10        * JavaScriptCore/wtf/unicode/glib/UnicodeGLib.h:
     11
    1122010-02-23  Leandro Pereira  <leandro@profusion.mobi>
    213
  • trunk/JavaScriptCore/JavaScriptCore.gypi

    r55027 r55158  
    369369            'wtf/Forward.h',
    370370            'wtf/GetPtr.h',
    371             'wtf/gtk/GOwnPtr.cpp',
    372             'wtf/gtk/GOwnPtr.h',
     371            'wtf/gobject/GOwnPtr.cpp',
     372            'wtf/gobject/GOwnPtr.h',
    373373            'wtf/gtk/MainThreadGtk.cpp',
    374374            'wtf/gtk/ThreadingGtk.cpp',
  • trunk/JavaScriptCore/wtf/Threading.h

    r53714 r55158  
    8787#include <pthread.h>
    8888#elif PLATFORM(GTK)
    89 #include <wtf/gtk/GOwnPtr.h>
     89#include "GOwnPtr.h"
    9090typedef struct _GMutex GMutex;
    9191typedef struct _GCond GCond;
  • trunk/JavaScriptCore/wtf/unicode/glib/UnicodeGLib.h

    r51423 r55158  
    2727
    2828#include "UnicodeMacrosFromICU.h"
    29 #include <wtf/gtk/GOwnPtr.h>
     29#include "GOwnPtr.h"
    3030
    3131#include <glib.h>
  • trunk/WebCore/ChangeLog

    r55157 r55158  
     12010-02-23  Leandro Pereira  <leandro@profusion.mobi>
     2
     3        Reviewed by Gustavo Noronha Silva.
     4
     5        Changes references of GOwnPtr to reflect their new place.
     6        http://webkit.org/b/35084
     7
     8        * WebCore/platform/KURL.cpp
     9        * WebCore/platform/TextEncoding.cpp:
     10        * WebCore/platform/text/gtk/TextBreakIteratorGtk.cpp:
     11        * WebCore/platform/text/gtk/TextCodecGtk.cpp:
     12
    1132010-02-23  Brady Eidson  <beidson@apple.com>
    214
  • trunk/WebCore/platform/KURL.cpp

    r54321 r55158  
    4242#elif USE(GLIB_UNICODE)
    4343#include <glib.h>
    44 #include <wtf/gtk/GOwnPtr.h>
     44#include "GOwnPtr.h"
    4545#endif
    4646
  • trunk/WebCore/platform/text/TextEncoding.cpp

    r52791 r55158  
    3939#elif USE(GLIB_UNICODE)
    4040#include <glib.h>
    41 #include <wtf/gtk/GOwnPtr.h>
     41#include "GOwnPtr.h"
    4242#endif
    4343#include <wtf/HashSet.h>
  • trunk/WebCore/platform/text/gtk/TextBreakIteratorGtk.cpp

    r51848 r55158  
    2323
    2424#include "config.h"
     25#include "GOwnPtr.h"
    2526#include "TextBreakIterator.h"
    2627
    2728#include <pango/pango.h>
    28 #include <wtf/gtk/GOwnPtr.h>
    2929
    3030namespace WebCore {
  • trunk/WebCore/platform/text/gtk/TextCodecGtk.cpp

    r55036 r55158  
    3131
    3232#include "CString.h"
     33#include "GOwnPtr.h"
     34#include "Logging.h"
    3335#include "PlatformString.h"
    3436#include <wtf/Assertions.h>
    3537#include <wtf/HashMap.h>
    36 #include <wtf/gtk/GOwnPtr.h>
    37 #include "Logging.h"
    3838
    3939using std::min;
Note: See TracChangeset for help on using the changeset viewer.