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

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

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 years 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/WebMediaPlayerClientImpl.cpp ('k') | Source/web/WebPluginScrollbarImpl.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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 #include "core/events/WheelEvent.h" 56 #include "core/events/WheelEvent.h"
57 #include "core/html/HTMLFormElement.h" 57 #include "core/html/HTMLFormElement.h"
58 #include "core/html/HTMLPlugInElement.h" 58 #include "core/html/HTMLPlugInElement.h"
59 #include "core/loader/FormState.h" 59 #include "core/loader/FormState.h"
60 #include "core/loader/FrameLoadRequest.h" 60 #include "core/loader/FrameLoadRequest.h"
61 #include "core/page/FocusController.h" 61 #include "core/page/FocusController.h"
62 #include "core/frame/Frame.h" 62 #include "core/frame/Frame.h"
63 #include "core/frame/FrameView.h" 63 #include "core/frame/FrameView.h"
64 #include "core/page/Page.h" 64 #include "core/page/Page.h"
65 #include "core/page/scrolling/ScrollingCoordinator.h" 65 #include "core/page/scrolling/ScrollingCoordinator.h"
66 #include "core/platform/ScrollAnimator.h"
67 #include "core/platform/ScrollView.h"
68 #include "core/platform/ScrollbarTheme.h"
69 #include "core/platform/chromium/ChromiumDataObject.h" 66 #include "core/platform/chromium/ChromiumDataObject.h"
70 #include "core/platform/chromium/KeyboardCodes.h" 67 #include "core/platform/chromium/KeyboardCodes.h"
71 #include "core/platform/graphics/GraphicsContext.h"
72 #include "core/platform/graphics/GraphicsLayer.h"
73 #include "core/plugins/PluginOcclusionSupport.h" 68 #include "core/plugins/PluginOcclusionSupport.h"
74 #include "core/rendering/HitTestResult.h" 69 #include "core/rendering/HitTestResult.h"
75 #include "core/rendering/RenderBox.h" 70 #include "core/rendering/RenderBox.h"
76 #include "platform/HostWindow.h" 71 #include "platform/HostWindow.h"
77 #include "platform/PlatformGestureEvent.h" 72 #include "platform/PlatformGestureEvent.h"
78 #include "platform/UserGestureIndicator.h" 73 #include "platform/UserGestureIndicator.h"
74 #include "platform/graphics/GraphicsContext.h"
75 #include "platform/graphics/GraphicsLayer.h"
76 #include "platform/scroll/ScrollAnimator.h"
77 #include "platform/scroll/ScrollView.h"
78 #include "platform/scroll/ScrollbarTheme.h"
79 #include "public/platform/Platform.h" 79 #include "public/platform/Platform.h"
80 #include "public/platform/WebClipboard.h" 80 #include "public/platform/WebClipboard.h"
81 #include "public/platform/WebCompositorSupport.h" 81 #include "public/platform/WebCompositorSupport.h"
82 #include "public/platform/WebCursorInfo.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"
(...skipping 802 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/WebMediaPlayerClientImpl.cpp ('k') | Source/web/WebPluginScrollbarImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698