Changeset 139591 in webkit


Ignore:
Timestamp:
Jan 14, 2013 1:23:31 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Fix a typo error in the comments in PlatformContextSkia.h
https://bugs.webkit.org/show_bug.cgi?id=105612

Patch by Qiankun Miao <qiankun.miao@intel.com> on 2013-01-14
Reviewed by Stephen White.

"If false we're rendering to a GraphicsContext for a web page, if false
we're not (as is the case when rendering to a canvas object)." is
self-contradictory. The second "flase" in the comments should be
"true". If true, we're rendering to an ImageBuffer which has a canvas
object.

  • platform/graphics/skia/PlatformContextSkia.h:

(PlatformContextSkia):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r139590 r139591  
     12013-01-14  Qiankun Miao  <qiankun.miao@intel.com>
     2
     3        Fix a typo error in the comments in PlatformContextSkia.h
     4        https://bugs.webkit.org/show_bug.cgi?id=105612
     5
     6        Reviewed by Stephen White.
     7
     8        "If false we're rendering to a GraphicsContext for a web page, if false
     9        we're not (as is the case when rendering to a canvas object)." is
     10        self-contradictory. The second "flase" in the comments should be
     11        "true". If true, we're rendering to an ImageBuffer which has a canvas
     12        object.
     13
     14        * platform/graphics/skia/PlatformContextSkia.h:
     15        (PlatformContextSkia):
     16
    1172013-01-14  Ilya Tikhonovsky  <loislo@chromium.org>
    218
  • trunk/Source/WebCore/platform/graphics/skia/PlatformContextSkia.h

    r139238 r139591  
    8686    SkDevice* createCompatibleDevice(const IntSize&, bool hasAlpha);
    8787
    88     // If false we're rendering to a GraphicsContext for a web page, if false
     88    // If false we're rendering to a GraphicsContext for a web page, if true
    8989    // we're not (as is the case when rendering to a canvas object).
    9090    // If this is true the contents have not been marked up with the magic
Note: See TracChangeset for help on using the changeset viewer.