Changeset 139582 in webkit


Ignore:
Timestamp:
Jan 13, 2013 8:42:49 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[BlackBerry] Add a public function WebPage::isLoading()
https://bugs.webkit.org/show_bug.cgi?id=106751

PR 274392

Patch by Xiaobo Wang <xbwang@torchmobile.com.cn> on 2013-01-13
Reviewed by George Staikos.

Need to get the load state in WebPageClient when resolving PR 274392.

  • Api/WebPage.cpp:

(BlackBerry::WebKit::WebPage::isLoading):
(WebKit):

  • Api/WebPage.h:
Location:
trunk/Source/WebKit/blackberry
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/blackberry/Api/WebPage.cpp

    r139225 r139582  
    31603160}
    31613161
     3162bool WebPage::isLoading() const
     3163{
     3164    return d->isLoading();
     3165}
     3166
    31623167bool WebPage::isVisible() const
    31633168{
  • trunk/Source/WebKit/blackberry/Api/WebPage.h

    r137845 r139582  
    131131
    132132    WebCookieJar* cookieJar() const;
     133
     134    bool isLoading() const;
    133135
    134136    void setVisible(bool);
  • trunk/Source/WebKit/blackberry/ChangeLog

    r139530 r139582  
     12013-01-13  Xiaobo Wang  <xbwang@torchmobile.com.cn>
     2
     3        [BlackBerry] Add a public function WebPage::isLoading()
     4        https://bugs.webkit.org/show_bug.cgi?id=106751
     5
     6        PR 274392
     7
     8        Reviewed by George Staikos.
     9
     10        Need to get the load state in WebPageClient when resolving PR 274392.
     11
     12        * Api/WebPage.cpp:
     13        (BlackBerry::WebKit::WebPage::isLoading):
     14        (WebKit):
     15        * Api/WebPage.h:
     16
    1172013-01-11  Andrew Lo  <anlo@rim.com>
    218
Note: See TracChangeset for help on using the changeset viewer.