| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 4 * Copyright (C) 2013 Samsung Electronics. All rights reserved. | 4 * Copyright (C) 2013 Samsung Electronics. All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions are | 7 * modification, are permitted provided that the following conditions are |
| 8 * met: | 8 * met: |
| 9 * | 9 * |
| 10 * * Redistributions of source code must retain the above copyright | 10 * * Redistributions of source code must retain the above copyright |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 const ScriptValue& handler, | 58 const ScriptValue& handler, |
| 59 int timeout, | 59 int timeout, |
| 60 const Vector<ScriptValue>&); | 60 const Vector<ScriptValue>&); |
| 61 int setInterval(ScriptState*, | 61 int setInterval(ScriptState*, |
| 62 EventTarget&, | 62 EventTarget&, |
| 63 const String& handler, | 63 const String& handler, |
| 64 int timeout, | 64 int timeout, |
| 65 const Vector<ScriptValue>&); | 65 const Vector<ScriptValue>&); |
| 66 void clearTimeout(EventTarget&, int timeout_id); | 66 void clearTimeout(EventTarget&, int timeout_id); |
| 67 void clearInterval(EventTarget&, int timeout_id); | 67 void clearInterval(EventTarget&, int timeout_id); |
| 68 } | 68 } // namespace DOMWindowTimers |
| 69 | 69 |
| 70 } // namespace blink | 70 } // namespace blink |
| 71 | 71 |
| 72 #endif // DOMWindowTimers_h | 72 #endif // DOMWindowTimers_h |
| OLD | NEW |