Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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

Canonical link: https://commits.webkit.org/46460@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@55158 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
kov committed Feb 23, 2010
1 parent 948b3bc commit 89fe03e
Show file tree
Hide file tree
Showing 10 changed files with 43 additions and 9 deletions.
11 changes: 11 additions & 0 deletions ChangeLog
@@ -1,3 +1,14 @@
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

* JavaScriptCore/JavaScriptCore.gypi:
* JavaScriptCore/wtf/Threading.h:
* JavaScriptCore/wtf/unicode/glib/UnicodeGLib.h:

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

Reviewed by Gustavo Noronha Silva.
Expand Down
11 changes: 11 additions & 0 deletions JavaScriptCore/ChangeLog
@@ -1,3 +1,14 @@
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

* JavaScriptCore/JavaScriptCore.gypi:
* JavaScriptCore/wtf/Threading.h:
* JavaScriptCore/wtf/unicode/glib/UnicodeGLib.h:

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

Reviewed by Kenneth Rohde Christiansen.
Expand Down
4 changes: 2 additions & 2 deletions JavaScriptCore/JavaScriptCore.gypi
Expand Up @@ -368,8 +368,8 @@
'wtf/FastMalloc.h',
'wtf/Forward.h',
'wtf/GetPtr.h',
'wtf/gtk/GOwnPtr.cpp',
'wtf/gtk/GOwnPtr.h',
'wtf/gobject/GOwnPtr.cpp',
'wtf/gobject/GOwnPtr.h',
'wtf/gtk/MainThreadGtk.cpp',
'wtf/gtk/ThreadingGtk.cpp',
'wtf/HashCountedSet.h',
Expand Down
2 changes: 1 addition & 1 deletion JavaScriptCore/wtf/Threading.h
Expand Up @@ -86,7 +86,7 @@
#if USE(PTHREADS)
#include <pthread.h>
#elif PLATFORM(GTK)
#include <wtf/gtk/GOwnPtr.h>
#include "GOwnPtr.h"
typedef struct _GMutex GMutex;
typedef struct _GCond GCond;
#endif
Expand Down
2 changes: 1 addition & 1 deletion JavaScriptCore/wtf/unicode/glib/UnicodeGLib.h
Expand Up @@ -26,7 +26,7 @@
#define UnicodeGLib_h

#include "UnicodeMacrosFromICU.h"
#include <wtf/gtk/GOwnPtr.h>
#include "GOwnPtr.h"

#include <glib.h>
#include <pango/pango.h>
Expand Down
12 changes: 12 additions & 0 deletions WebCore/ChangeLog
@@ -1,3 +1,15 @@
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

* WebCore/platform/KURL.cpp
* WebCore/platform/TextEncoding.cpp:
* WebCore/platform/text/gtk/TextBreakIteratorGtk.cpp:
* WebCore/platform/text/gtk/TextCodecGtk.cpp:

2010-02-23 Brady Eidson <beidson@apple.com>

Reviewed by Alexey Proskuryakov.
Expand Down
2 changes: 1 addition & 1 deletion WebCore/platform/KURL.cpp
Expand Up @@ -41,7 +41,7 @@
#include <QUrl>
#elif USE(GLIB_UNICODE)
#include <glib.h>
#include <wtf/gtk/GOwnPtr.h>
#include "GOwnPtr.h"
#endif

#include <stdio.h>
Expand Down
2 changes: 1 addition & 1 deletion WebCore/platform/text/TextEncoding.cpp
Expand Up @@ -38,7 +38,7 @@
#include <QString>
#elif USE(GLIB_UNICODE)
#include <glib.h>
#include <wtf/gtk/GOwnPtr.h>
#include "GOwnPtr.h"
#endif
#include <wtf/HashSet.h>
#include <wtf/OwnPtr.h>
Expand Down
2 changes: 1 addition & 1 deletion WebCore/platform/text/gtk/TextBreakIteratorGtk.cpp
Expand Up @@ -22,10 +22,10 @@
*/

#include "config.h"
#include "GOwnPtr.h"
#include "TextBreakIterator.h"

#include <pango/pango.h>
#include <wtf/gtk/GOwnPtr.h>

namespace WebCore {

Expand Down
4 changes: 2 additions & 2 deletions WebCore/platform/text/gtk/TextCodecGtk.cpp
Expand Up @@ -30,11 +30,11 @@
#include "TextCodecGtk.h"

#include "CString.h"
#include "GOwnPtr.h"
#include "Logging.h"
#include "PlatformString.h"
#include <wtf/Assertions.h>
#include <wtf/HashMap.h>
#include <wtf/gtk/GOwnPtr.h>
#include "Logging.h"

using std::min;

Expand Down

0 comments on commit 89fe03e

Please sign in to comment.