Changeset 111819 in webkit


Ignore:
Timestamp:
Mar 22, 2012 8:20:39 PM (12 years ago)
Author:
leo.yang@torchmobile.com.cn
Message:

[BlackBerry] Add HistoryItemViewState for BlackBerry port
https://bugs.webkit.org/show_bug.cgi?id=81867

Reviewed by Rob Buis.

HistoryItemViewState is the blackberry specific field of HistoryItem.
It's used to maintain the porting specific view state.

No new test because the port can't be built yet.

  • history/HistoryItem.h:

(HistoryItem):
(WebCore::HistoryItem::viewState):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r111818 r111819  
     12012-03-22  Leo Yang  <leo.yang@torchmobile.com.cn>
     2
     3        [BlackBerry] Add HistoryItemViewState for BlackBerry port
     4        https://bugs.webkit.org/show_bug.cgi?id=81867
     5
     6        Reviewed by Rob Buis.
     7
     8        HistoryItemViewState is the blackberry specific field of HistoryItem.
     9        It's used to maintain the porting specific view state.
     10
     11        No new test because the port can't be built yet.
     12
     13        * history/HistoryItem.h:
     14        (HistoryItem):
     15        (WebCore::HistoryItem::viewState):
     16
    1172012-03-22  SravanKumar Sandela  <ssandela@innominds.com>
    218
  • trunk/Source/WebCore/history/HistoryItem.h

    r98316 r111819  
    11/*
    22 * Copyright (C) 2006, 2008, 2011 Apple Inc. All rights reserved.
     3 * Copyright (C) 2012 Research In Motion Limited. All rights reserved.
    34 *
    45 * Redistribution and use in source and binary forms, with or without
     
    4546#endif
    4647
     48#if PLATFORM(BLACKBERRY)
     49#include "HistoryItemViewState.h"
     50#endif
     51
    4752namespace WebCore {
    4853
     
    200205#endif
    201206
     207#if PLATFORM(BLACKBERRY)
     208    HistoryItemViewState& viewState() { return m_viewState; }
     209#endif
     210
    202211#ifndef NDEBUG
    203212    int showTree() const;
     
    290299#endif
    291300
     301#if PLATFORM(BLACKBERRY)
     302    HistoryItemViewState m_viewState;
     303#endif
    292304}; //class HistoryItem
    293305
Note: See TracChangeset for help on using the changeset viewer.