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

Side by Side Diff: Source/web/WebPluginContainerImpl.cpp

Issue 60033008: Remove forwarding headers in public/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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/web/WebPagePopupImpl.cpp ('k') | Source/web/linux/WebFontInfo.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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 15 matching lines...) Expand all
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "config.h" 31 #include "config.h"
32 #include "WebPluginContainerImpl.h" 32 #include "WebPluginContainerImpl.h"
33 33
34 #include "ChromeClientImpl.h" 34 #include "ChromeClientImpl.h"
35 #include "ScrollbarGroup.h" 35 #include "ScrollbarGroup.h"
36 #include "WebCursorInfo.h"
37 #include "WebDataSourceImpl.h" 36 #include "WebDataSourceImpl.h"
38 #include "WebElement.h" 37 #include "WebElement.h"
39 #include "WebInputEvent.h" 38 #include "WebInputEvent.h"
40 #include "WebInputEventConversion.h" 39 #include "WebInputEventConversion.h"
41 #include "WebPlugin.h" 40 #include "WebPlugin.h"
42 #include "WebViewClient.h" 41 #include "WebViewClient.h"
43 #include "WebViewImpl.h" 42 #include "WebViewImpl.h"
44 #include "core/page/Chrome.h" 43 #include "core/page/Chrome.h"
45 #include "core/page/EventHandler.h" 44 #include "core/page/EventHandler.h"
46 #include "platform/exported/WrappedResourceResponse.h" 45 #include "platform/exported/WrappedResourceResponse.h"
(...skipping 26 matching lines...) Expand all
73 #include "core/platform/graphics/GraphicsLayer.h" 72 #include "core/platform/graphics/GraphicsLayer.h"
74 #include "core/plugins/PluginOcclusionSupport.h" 73 #include "core/plugins/PluginOcclusionSupport.h"
75 #include "core/rendering/HitTestResult.h" 74 #include "core/rendering/HitTestResult.h"
76 #include "core/rendering/RenderBox.h" 75 #include "core/rendering/RenderBox.h"
77 #include "platform/HostWindow.h" 76 #include "platform/HostWindow.h"
78 #include "platform/PlatformGestureEvent.h" 77 #include "platform/PlatformGestureEvent.h"
79 #include "platform/UserGestureIndicator.h" 78 #include "platform/UserGestureIndicator.h"
80 #include "public/platform/Platform.h" 79 #include "public/platform/Platform.h"
81 #include "public/platform/WebClipboard.h" 80 #include "public/platform/WebClipboard.h"
82 #include "public/platform/WebCompositorSupport.h" 81 #include "public/platform/WebCompositorSupport.h"
82 #include "public/platform/WebCursorInfo.h"
83 #include "public/platform/WebDragData.h" 83 #include "public/platform/WebDragData.h"
84 #include "public/platform/WebExternalTextureLayer.h" 84 #include "public/platform/WebExternalTextureLayer.h"
85 #include "public/platform/WebRect.h" 85 #include "public/platform/WebRect.h"
86 #include "public/platform/WebString.h" 86 #include "public/platform/WebString.h"
87 #include "public/platform/WebURL.h" 87 #include "public/platform/WebURL.h"
88 #include "public/platform/WebURLError.h" 88 #include "public/platform/WebURLError.h"
89 #include "public/platform/WebURLRequest.h" 89 #include "public/platform/WebURLRequest.h"
90 #include "public/platform/WebVector.h" 90 #include "public/platform/WebVector.h"
91 91
92 using namespace WebCore; 92 using namespace WebCore;
(...skipping 798 matching lines...) Expand 10 before | Expand all | Expand 10 after
891 // Take our element and get the clip rect from the enclosing layer and 891 // Take our element and get the clip rect from the enclosing layer and
892 // frame view. 892 // frame view.
893 clipRect.intersect( 893 clipRect.intersect(
894 m_element->document().view()->windowClipRectForFrameOwner(m_element, true)); 894 m_element->document().view()->windowClipRectForFrameOwner(m_element, true));
895 } 895 }
896 896
897 return clipRect; 897 return clipRect;
898 } 898 }
899 899
900 } // namespace blink 900 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/WebPagePopupImpl.cpp ('k') | Source/web/linux/WebFontInfo.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698