Changeset 86404 in webkit


Ignore:
Timestamp:
May 12, 2011 5:25:01 PM (13 years ago)
Author:
dbates@webkit.org
Message:

2011-05-12 Daniel Bates <dbates@rim.com>

Attempt to fix the build after changeset 86391<http://trac.webkit.org/changeset/86391>
(https://bugs.webkit.org/show_bug.cgi?id=60681).

  • page/PluginHalter.cpp: (WebCore::PluginHalter::PluginHalter): Substitute m_client for client in ASSERT_ARG since client is now of type PassOwnPtr so it becomes 0 when assigned to another variable.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r86401 r86404  
     12011-05-12  Daniel Bates  <dbates@rim.com>
     2
     3        Attempt to fix the build after changeset 86391 <http://trac.webkit.org/changeset/86391>
     4        (https://bugs.webkit.org/show_bug.cgi?id=60681).
     5
     6        * page/PluginHalter.cpp:
     7        (WebCore::PluginHalter::PluginHalter): Substitute m_client for client in ASSERT_ARG since client is now of type PassOwnPtr
     8        so it becomes 0 when assigned to another variable.
     9
    1102011-05-12  Patrick Gansterer  <paroga@webkit.org>
    211
  • trunk/Source/WebCore/page/PluginHalter.cpp

    r86391 r86404  
    4242    , m_pluginAllowedRunTime(numeric_limits<unsigned>::max())
    4343{
    44     ASSERT_ARG(client, client);
     44    ASSERT_ARG(m_client, m_client);
    4545}
    4646
Note: See TracChangeset for help on using the changeset viewer.