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

Side by Side Diff: Source/WebKit/chromium/src/WebPluginContainerImpl.cpp

Issue 14323004: Make Frame's ScriptController an OwnPtr and remove the #include (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix Created 7 years, 8 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
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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 #include "HTMLFormElement.h" 58 #include "HTMLFormElement.h"
59 #include "HTMLNames.h" 59 #include "HTMLNames.h"
60 #include "HTMLPlugInElement.h" 60 #include "HTMLPlugInElement.h"
61 #include "IFrameShimSupport.h" 61 #include "IFrameShimSupport.h"
62 #include "KeyboardCodes.h" 62 #include "KeyboardCodes.h"
63 #include "KeyboardEvent.h" 63 #include "KeyboardEvent.h"
64 #include "MouseEvent.h" 64 #include "MouseEvent.h"
65 #include "Page.h" 65 #include "Page.h"
66 #include "PlatformGestureEvent.h" 66 #include "PlatformGestureEvent.h"
67 #include "RenderBox.h" 67 #include "RenderBox.h"
68 #include "ScriptController.h"
68 #include "ScrollAnimator.h" 69 #include "ScrollAnimator.h"
69 #include "ScrollView.h" 70 #include "ScrollView.h"
70 #include "ScrollbarTheme.h" 71 #include "ScrollbarTheme.h"
71 #include "ScrollingCoordinator.h" 72 #include "ScrollingCoordinator.h"
72 #include "TouchEvent.h" 73 #include "TouchEvent.h"
73 #include "UserGestureIndicator.h" 74 #include "UserGestureIndicator.h"
74 #include "WebPrintParams.h" 75 #include "WebPrintParams.h"
75 #include "WheelEvent.h" 76 #include "WheelEvent.h"
76 #include <public/Platform.h> 77 #include <public/Platform.h>
77 #include <public/WebClipboard.h> 78 #include <public/WebClipboard.h>
(...skipping 770 matching lines...) Expand 10 before | Expand all | Expand 10 after
848 // Take our element and get the clip rect from the enclosing layer and 849 // Take our element and get the clip rect from the enclosing layer and
849 // frame view. 850 // frame view.
850 clipRect.intersect( 851 clipRect.intersect(
851 m_element->document()->view()->windowClipRectForFrameOwner(m_element , true)); 852 m_element->document()->view()->windowClipRectForFrameOwner(m_element , true));
852 } 853 }
853 854
854 return clipRect; 855 return clipRect;
855 } 856 }
856 857
857 } // namespace WebKit 858 } // namespace WebKit
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/src/WebDevToolsAgentImpl.cpp ('k') | Source/WebKit/chromium/tests/IDBBindingUtilitiesTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698