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

Side by Side Diff: Source/core/html/MediaDocument.cpp

Issue 210133002: Remove the include "core/events/ThreadLocalEventNames.h" (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 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
« no previous file with comments | « Source/core/html/ImageDocument.cpp ('k') | Source/core/html/MediaKeyEvent.cpp » ('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) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 14 matching lines...) Expand all
25 25
26 #include "config.h" 26 #include "config.h"
27 27
28 #include "core/html/MediaDocument.h" 28 #include "core/html/MediaDocument.h"
29 29
30 #include "HTMLNames.h" 30 #include "HTMLNames.h"
31 #include "bindings/v8/ExceptionStatePlaceholder.h" 31 #include "bindings/v8/ExceptionStatePlaceholder.h"
32 #include "core/dom/ElementTraversal.h" 32 #include "core/dom/ElementTraversal.h"
33 #include "core/dom/RawDataDocumentParser.h" 33 #include "core/dom/RawDataDocumentParser.h"
34 #include "core/events/KeyboardEvent.h" 34 #include "core/events/KeyboardEvent.h"
35 #include "core/events/ThreadLocalEventNames.h"
36 #include "core/frame/LocalFrame.h" 35 #include "core/frame/LocalFrame.h"
37 #include "core/html/HTMLBodyElement.h" 36 #include "core/html/HTMLBodyElement.h"
38 #include "core/html/HTMLHeadElement.h" 37 #include "core/html/HTMLHeadElement.h"
39 #include "core/html/HTMLHtmlElement.h" 38 #include "core/html/HTMLHtmlElement.h"
40 #include "core/html/HTMLMetaElement.h" 39 #include "core/html/HTMLMetaElement.h"
41 #include "core/html/HTMLSourceElement.h" 40 #include "core/html/HTMLSourceElement.h"
42 #include "core/html/HTMLVideoElement.h" 41 #include "core/html/HTMLVideoElement.h"
43 #include "core/loader/DocumentLoader.h" 42 #include "core/loader/DocumentLoader.h"
44 #include "core/loader/FrameLoader.h" 43 #include "core/loader/FrameLoader.h"
45 #include "platform/KeyboardCodes.h" 44 #include "platform/KeyboardCodes.h"
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 if (video->canPlay()) 146 if (video->canPlay())
148 video->play(); 147 video->play();
149 } else 148 } else
150 video->pause(); 149 video->pause();
151 event->setDefaultHandled(); 150 event->setDefaultHandled();
152 } 151 }
153 } 152 }
154 } 153 }
155 154
156 } 155 }
OLDNEW
« no previous file with comments | « Source/core/html/ImageDocument.cpp ('k') | Source/core/html/MediaKeyEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698