Changeset 117494 in webkit


Ignore:
Timestamp:
May 17, 2012 2:17:36 PM (12 years ago)
Author:
rwlbuis@webkit.org
Message:

[BlackBerry] Fix linking errors
https://bugs.webkit.org/show_bug.cgi?id=86768

Reviewed by Antonio Gomes.

Add some missing stubs so we can link again.

  • platform/blackberry/ContextMenuBlackBerry.cpp:

(WebCore::ContextMenu::itemCount):
(WebCore):

  • platform/blackberry/PlatformScreenBlackBerry.cpp:

(WebCore::screenHorizontalDPI):
(WebCore):
(WebCore::screenVerticalDPI):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r117491 r117494  
     12012-05-17  Rob Buis  <rwlbuis@webkit.org>
     2
     3        [BlackBerry] Fix linking errors
     4        https://bugs.webkit.org/show_bug.cgi?id=86768
     5
     6        Reviewed by Antonio Gomes.
     7
     8        Add some missing stubs so we can link again.
     9
     10        * platform/blackberry/ContextMenuBlackBerry.cpp:
     11        (WebCore::ContextMenu::itemCount):
     12        (WebCore):
     13        * platform/blackberry/PlatformScreenBlackBerry.cpp:
     14        (WebCore::screenHorizontalDPI):
     15        (WebCore):
     16        (WebCore::screenVerticalDPI):
     17
    1182012-05-17  Emil A Eklund  <eae@chromium.org>
    219
  • trunk/Source/WebCore/platform/blackberry/ContextMenuBlackBerry.cpp

    r102590 r117494  
    4444}
    4545
     46unsigned ContextMenu::itemCount() const
     47{
     48    notImplemented();
     49    return 0;
     50}
     51
    4652} // namespace WebCore
  • trunk/Source/WebCore/platform/blackberry/PlatformScreenBlackBerry.cpp

    r109592 r117494  
    2121
    2222#include "FloatRect.h"
     23#include "NotImplemented.h"
    2324#include "Widget.h"
    2425
     
    2627
    2728namespace WebCore {
     29
     30int screenHorizontalDPI(Widget*)
     31{
     32    notImplemented();
     33    return 0;
     34}
     35
     36int screenVerticalDPI(Widget*)
     37{
     38    notImplemented();
     39    return 0;
     40}
    2841
    2942bool screenIsMonochrome(Widget*)
Note: See TracChangeset for help on using the changeset viewer.