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

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

Issue 153343003: Move Clipboard-related code from core/dom to core/clipboard (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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
« no previous file with comments | « Source/web/WebDragData.cpp ('k') | Source/web/WebViewImpl.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 29 matching lines...) Expand all
40 #include "WebPlugin.h" 40 #include "WebPlugin.h"
41 #include "WebViewClient.h" 41 #include "WebViewClient.h"
42 #include "WebViewImpl.h" 42 #include "WebViewImpl.h"
43 #include "core/page/Chrome.h" 43 #include "core/page/Chrome.h"
44 #include "core/page/EventHandler.h" 44 #include "core/page/EventHandler.h"
45 #include "platform/exported/WrappedResourceResponse.h" 45 #include "platform/exported/WrappedResourceResponse.h"
46 46
47 #include "HTMLNames.h" 47 #include "HTMLNames.h"
48 #include "WebPrintParams.h" 48 #include "WebPrintParams.h"
49 #include "bindings/v8/ScriptController.h" 49 #include "bindings/v8/ScriptController.h"
50 #include "core/dom/Clipboard.h" 50 #include "core/clipboard/Clipboard.h"
51 #include "core/dom/DataObject.h" 51 #include "core/clipboard/DataObject.h"
52 #include "core/events/GestureEvent.h" 52 #include "core/events/GestureEvent.h"
53 #include "core/events/KeyboardEvent.h" 53 #include "core/events/KeyboardEvent.h"
54 #include "core/events/MouseEvent.h" 54 #include "core/events/MouseEvent.h"
55 #include "core/events/ThreadLocalEventNames.h" 55 #include "core/events/ThreadLocalEventNames.h"
56 #include "core/events/TouchEvent.h" 56 #include "core/events/TouchEvent.h"
57 #include "core/events/WheelEvent.h" 57 #include "core/events/WheelEvent.h"
58 #include "core/html/HTMLFormElement.h" 58 #include "core/html/HTMLFormElement.h"
59 #include "core/html/HTMLPlugInElement.h" 59 #include "core/html/HTMLPlugInElement.h"
60 #include "core/loader/FormState.h" 60 #include "core/loader/FormState.h"
61 #include "core/loader/FrameLoadRequest.h" 61 #include "core/loader/FrameLoadRequest.h"
(...skipping 833 matching lines...) Expand 10 before | Expand all | Expand 10 after
895 // Take our element and get the clip rect from the enclosing layer and 895 // Take our element and get the clip rect from the enclosing layer and
896 // frame view. 896 // frame view.
897 clipRect.intersect( 897 clipRect.intersect(
898 m_element->document().view()->windowClipRectForFrameOwner(m_element, true)); 898 m_element->document().view()->windowClipRectForFrameOwner(m_element, true));
899 } 899 }
900 900
901 return clipRect; 901 return clipRect;
902 } 902 }
903 903
904 } // namespace blink 904 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/WebDragData.cpp ('k') | Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698