[webkit-reviews] review granted: [Bug 21863] Add userData and setUserData methods to History Item : [Attachment 24648] Add setUserData() and userData() methods.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Oct 27 11:16:20 PDT 2008


Brady Eidson <beidson at apple.com> has granted Yael <yael.aharon at nokia.com>'s
request for review:
Bug 21863: Add userData and setUserData methods to History Item
https://bugs.webkit.org/show_bug.cgi?id=21863

Attachment 24648: Add setUserData() and userData() methods.
https://bugs.webkit.org/attachment.cgi?id=24648&action=edit

------- Additional Comments from Brady Eidson <beidson at apple.com>
> Index: WebCore/WebCore.pro
> ===================================================================
> --- WebCore/WebCore.pro	(revision 37851)
> +++ WebCore/WebCore.pro	(working copy)
> @@ -1006,6 +1006,7 @@
>      bridge/qt/qt_class.cpp \
>      bridge/qt/qt_instance.cpp \
>      bridge/qt/qt_runtime.cpp \
> +    history/qt/HistoryItemQt.cpp \
>      page/qt/AccessibilityObjectQt.cpp \
>      page/qt/DragControllerQt.cpp \
>      page/qt/EventHandlerQt.cpp \
> Index: WebCore/ChangeLog
> ===================================================================
> --- WebCore/ChangeLog (revision 37853)
> +++ WebCore/ChangeLog (working copy)
> @@ -1,3 +1,16 @@
> +2008-10-24  Yael Aharon <yael.aharon at nokia.com>
> +
> +	   Reviewed by NOBODY (OOPS!).
> +
> +	   Add methods for getting and setting user data on History Item.
> +	   This change is limited to QT port only. Tests will be added shortly.

> +
> +	   * WebCore.pro:
> +	   * history/HistoryItem.h:
> +	   * history/qt/HistoryItemQt.cpp: Added.
> +	   (WebCore::HistoryItem::userData):
> +	   (WebCore::HistoryItem::setUserData):
> +
>  2008-10-24  Simon Fraser  <simon.fraser at apple.com>
>  
>	   Reviewed by Darin Adler
> Index: WebCore/history/qt/HistoryItemQt.cpp
> ===================================================================
> --- WebCore/history/qt/HistoryItemQt.cpp	(revision 0)
> +++ WebCore/history/qt/HistoryItemQt.cpp	(revision 0)
> @@ -0,0 +1,35 @@
> +/*
> +    Copyright (C) 2008 Trolltech ASA
> +
> +    This library is free software; you can redistribute it and/or
> +    modify it under the terms of the GNU Library General Public
> +    License as published by the Free Software Foundation; either
> +    version 2 of the License, or (at your option) any later version.
> +
> +    This library is distributed in the hope that it will be useful,
> +    but WITHOUT ANY WARRANTY; without even the implied warranty of
> +    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
> +    Library General Public License for more details.
> +
> +    You should have received a copy of the GNU Library General Public
License
> +    along with this library; see the file COPYING.LIB.  If not, write to
> +    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
> +    Boston, MA 02110-1301, USA.
> +*/
> +
> +#include "HistoryItem.h"
> +#include <QVariant>
> +
> +namespace WebCore {
> +
> +QVariant HistoryItem::userData()
> +{
> +    return m_userData;
> +}
> +
> +void HistoryItem::setUserData(QVariant& userData)
> +{
> +    m_userData = userData;
> +}
> +
> +}; // namespace WebCore
> Index: WebCore/history/HistoryItem.h
> ===================================================================
> --- WebCore/history/HistoryItem.h	(revision 37851)
> +++ WebCore/history/HistoryItem.h	(working copy)
> @@ -41,7 +41,9 @@
>  #import <wtf/RetainPtr.h>
>  typedef struct objc_object* id;
>  #endif
> -
> +#if PLATFORM(QT)
> +#include <QVariant>
> +#endif
>  namespace WebCore {
>  
>  class Document;
> @@ -147,6 +149,10 @@
>      id getTransientProperty(const String&) const;
>      void setTransientProperty(const String&, id);
>  #endif
> +#if PLATFORM(QT)
> +    QVariant userData();
> +    void setUserData(QVariant& userData);
> +#endif
>  
>  #ifndef NDEBUG
>      int showTree() const;
> @@ -196,6 +202,9 @@
>      RetainPtr<id> m_viewState;
>      OwnPtr<HashMap<String, RetainPtr<id> > > m_transientProperties;
>  #endif
> +#if PLATFORM(QT)
> +    QVariant m_userData;
> +#endif
>  }; //class HistoryItem
>  
>  } //namespace WebCore


More information about the webkit-reviews mailing list