Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: third_party/WebKit/Source/core/frame/DOMWindowTimers.h

Issue 2818613003: Rewrite references to "wtf/" to "platform/wtf/" in core/frame. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 15 matching lines...) Expand all
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */ 31 */
32 32
33 #ifndef DOMWindowTimers_h 33 #ifndef DOMWindowTimers_h
34 #define DOMWindowTimers_h 34 #define DOMWindowTimers_h
35 35
36 #include "wtf/Forward.h" 36 #include "platform/wtf/Forward.h"
37 #include "wtf/Vector.h" 37 #include "platform/wtf/Vector.h"
38 38
39 namespace blink { 39 namespace blink {
40 40
41 class EventTarget; 41 class EventTarget;
42 class ScriptState; 42 class ScriptState;
43 class ScriptValue; 43 class ScriptValue;
44 44
45 namespace DOMWindowTimers { 45 namespace DOMWindowTimers {
46 int setTimeout(ScriptState*, 46 int setTimeout(ScriptState*,
47 EventTarget&, 47 EventTarget&,
(...skipping 15 matching lines...) Expand all
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 }
69 69
70 } // namespace blink 70 } // namespace blink
71 71
72 #endif // DOMWindowTimers_h 72 #endif // DOMWindowTimers_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698