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

Side by Side Diff: Source/core/html/shadow/MediaControlElements.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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2012 Google Inc. All rights reserved. 3 * Copyright (C) 2012 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 18 matching lines...) Expand all
29 29
30 #include "config.h" 30 #include "config.h"
31 #include "core/html/shadow/MediaControlElements.h" 31 #include "core/html/shadow/MediaControlElements.h"
32 32
33 #include "RuntimeEnabledFeatures.h" 33 #include "RuntimeEnabledFeatures.h"
34 #include "bindings/v8/ExceptionStatePlaceholder.h" 34 #include "bindings/v8/ExceptionStatePlaceholder.h"
35 #include "core/dom/DOMTokenList.h" 35 #include "core/dom/DOMTokenList.h"
36 #include "core/dom/FullscreenElementStack.h" 36 #include "core/dom/FullscreenElementStack.h"
37 #include "core/dom/shadow/ShadowRoot.h" 37 #include "core/dom/shadow/ShadowRoot.h"
38 #include "core/events/MouseEvent.h" 38 #include "core/events/MouseEvent.h"
39 #include "core/events/ThreadLocalEventNames.h"
40 #include "core/frame/LocalFrame.h" 39 #include "core/frame/LocalFrame.h"
41 #include "core/html/HTMLVideoElement.h" 40 #include "core/html/HTMLVideoElement.h"
42 #include "core/html/shadow/MediaControls.h" 41 #include "core/html/shadow/MediaControls.h"
43 #include "core/html/track/TextTrack.h" 42 #include "core/html/track/TextTrack.h"
44 #include "core/html/track/vtt/VTTRegionList.h" 43 #include "core/html/track/vtt/VTTRegionList.h"
45 #include "core/page/EventHandler.h" 44 #include "core/page/EventHandler.h"
46 #include "core/rendering/RenderMediaControlElements.h" 45 #include "core/rendering/RenderMediaControlElements.h"
47 #include "core/rendering/RenderSlider.h" 46 #include "core/rendering/RenderSlider.h"
48 #include "core/rendering/RenderTheme.h" 47 #include "core/rendering/RenderTheme.h"
49 #include "core/rendering/RenderVideo.h" 48 #include "core/rendering/RenderVideo.h"
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 float fontSize = smallestDimension * 0.05f; 672 float fontSize = smallestDimension * 0.05f;
674 if (fontSize != m_fontSize) { 673 if (fontSize != m_fontSize) {
675 m_fontSize = fontSize; 674 m_fontSize = fontSize;
676 setInlineStyleProperty(CSSPropertyFontSize, fontSize, CSSPrimitiveValue: :CSS_PX); 675 setInlineStyleProperty(CSSPropertyFontSize, fontSize, CSSPrimitiveValue: :CSS_PX);
677 } 676 }
678 } 677 }
679 678
680 // ---------------------------- 679 // ----------------------------
681 680
682 } // namespace WebCore 681 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/html/canvas/WebGLContextEvent.cpp ('k') | Source/core/html/shadow/SpinButtonElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698