Changeset 142836 in webkit


Ignore:
Timestamp:
Feb 13, 2013 5:50:52 PM (11 years ago)
Author:
dino@apple.com
Message:

PlugIn Autostart should expire in 30 days, not half a day
https://bugs.webkit.org/show_bug.cgi?id=109767

Reviewed by Brian Weinstein.

We forgot to multiply by 60 seconds in a minute.

  • UIProcess/Plugins/PlugInAutoStartProvider.cpp:
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r142835 r142836  
     12013-02-13  Dean Jackson  <dino@apple.com>
     2
     3        PlugIn Autostart should expire in 30 days, not half a day
     4        https://bugs.webkit.org/show_bug.cgi?id=109767
     5
     6        Reviewed by Brian Weinstein.
     7
     8        We forgot to multiply by 60 seconds in a minute.
     9
     10        * UIProcess/Plugins/PlugInAutoStartProvider.cpp:
     11
    1122013-02-13  Anders Carlsson  <andersca@apple.com>
    213
  • trunk/Source/WebKit2/UIProcess/Plugins/PlugInAutoStartProvider.cpp

    r138729 r142836  
    11/*
    2  * Copyright (C) 2012 Apple Inc. All rights reserved.
     2 * Copyright (C) 2012, 2013 Apple Inc. All rights reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    3333using namespace WebCore;
    3434
    35 static const double plugInAutoStartExpirationTimeThreshold = 30 * 24 * 60;
     35static const double plugInAutoStartExpirationTimeThreshold = 30 * 24 * 60 * 60;
    3636
    3737namespace WebKit {
Note: See TracChangeset for help on using the changeset viewer.