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

Side by Side Diff: Source/core/dom/EventTarget.h

Issue 22802012: Rename DOMApplicationCache to ApplicationCache and expose it to JS (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove change to devtools and fix nits Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/dom/EventTargetFactory.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
6 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) 6 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org)
7 * (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> 7 * (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org>
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions 10 * modification, are permitted provided that the following conditions
(...skipping 20 matching lines...) Expand all
31 31
32 #ifndef EventTarget_h 32 #ifndef EventTarget_h
33 #define EventTarget_h 33 #define EventTarget_h
34 34
35 #include "core/dom/EventListenerMap.h" 35 #include "core/dom/EventListenerMap.h"
36 #include "core/dom/EventNames.h" 36 #include "core/dom/EventNames.h"
37 #include "wtf/Forward.h" 37 #include "wtf/Forward.h"
38 38
39 namespace WebCore { 39 namespace WebCore {
40 40
41 class ApplicationCache;
41 class AudioContext; 42 class AudioContext;
42 class DOMApplicationCache;
43 class DOMWindow; 43 class DOMWindow;
44 class DedicatedWorkerGlobalScope; 44 class DedicatedWorkerGlobalScope;
45 class Event; 45 class Event;
46 class EventListener; 46 class EventListener;
47 class EventSource; 47 class EventSource;
48 class ExceptionState; 48 class ExceptionState;
49 class FileReader; 49 class FileReader;
50 class FileWriter; 50 class FileWriter;
51 class IDBDatabase; 51 class IDBDatabase;
52 class IDBRequest; 52 class IDBRequest;
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 { 202 {
203 EventTargetData* d = eventTargetData(); 203 EventTargetData* d = eventTargetData();
204 if (!d) 204 if (!d)
205 return false; 205 return false;
206 return d->eventListenerMap.containsCapturing(eventType); 206 return d->eventListenerMap.containsCapturing(eventType);
207 } 207 }
208 208
209 } // namespace WebCore 209 } // namespace WebCore
210 210
211 #endif // EventTarget_h 211 #endif // EventTarget_h
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/dom/EventTargetFactory.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698