Changeset 166130 in webkit


Ignore:
Timestamp:
Mar 22, 2014 6:01:48 PM (10 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

Add *final* keyword to NavigatorContentUtils class
https://bugs.webkit.org/show_bug.cgi?id=130636

Reviewed by Darin Adler.

NavigatorContentUtils won't be used as a base class. So, added final keyword.

No new tests, no behavior changes.

  • Modules/navigatorcontentutils/NavigatorContentUtils.h:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r166128 r166130  
     12014-03-22  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Add *final* keyword to NavigatorContentUtils class
     4        https://bugs.webkit.org/show_bug.cgi?id=130636
     5
     6        Reviewed by Darin Adler.
     7
     8        NavigatorContentUtils won't be used as a base class. So, added final keyword.
     9
     10        No new tests, no behavior changes.
     11
     12        * Modules/navigatorcontentutils/NavigatorContentUtils.h:
     13
    1142014-03-22  Andreas Kling  <akling@apple.com>
    215
  • trunk/Source/WebCore/Modules/navigatorcontentutils/NavigatorContentUtils.h

    r165723 r166130  
    4242typedef int ExceptionCode;
    4343
    44 class NavigatorContentUtils : public RefCountedSupplement<Page, NavigatorContentUtils> {
     44class NavigatorContentUtils final : public RefCountedSupplement<Page, NavigatorContentUtils> {
    4545public:
    4646    virtual ~NavigatorContentUtils();
Note: See TracChangeset for help on using the changeset viewer.