Changeset 78201 in webkit


Ignore:
Timestamp:
Feb 10, 2011 4:41:15 AM (13 years ago)
Author:
Adam Roben
Message:

Turn on the new drawing area on Windows

Fixes <http://webkit.org/b/53805> <rdar://problem/8960666> WebKit2 on Windows should use
DrawingAreaProxyImpl

Reviewed by Darin Adler.

  • UIProcess/win/WebView.cpp:

(WebKit::useNewDrawingArea): Return true!

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r78200 r78201  
     12011-02-09  Adam Roben  <aroben@apple.com>
     2
     3        Turn on the new drawing area on Windows
     4
     5        Fixes <http://webkit.org/b/53805> <rdar://problem/8960666> WebKit2 on Windows should use
     6        DrawingAreaProxyImpl
     7
     8        Reviewed by Darin Adler.
     9
     10        * UIProcess/win/WebView.cpp:
     11        (WebKit::useNewDrawingArea): Return true!
     12
    1132011-02-09  Adam Roben  <aroben@apple.com>
    214
  • trunk/Source/WebKit2/UIProcess/win/WebView.cpp

    r78200 r78201  
    8585static bool useNewDrawingArea()
    8686{
    87     // FIXME: Turn this on by default <http://webkit.org/b/53877>.
    88     static bool useNewDrawingArea = getenv("WEBKIT2_USE_NEW_DRAWING_AREA");
    89     return useNewDrawingArea;
     87    // FIXME: Remove this function and the old drawing area code once we aren't interested in
     88    // testing the old drawing area anymore.
     89    return true;
    9090}
    9191
Note: See TracChangeset for help on using the changeset viewer.