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

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

Issue 169323002: Oilpan: Move core/clipboard/ to oilpan's heap (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/WebViewImpl.h ('k') | public/platform/WebDragData.h » ('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) 2011, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2011, 2012 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 3119 matching lines...) Expand 10 before | Expand all | Expand 10 after
3130 3130
3131 WebDragOperation WebViewImpl::dragTargetDragEnter( 3131 WebDragOperation WebViewImpl::dragTargetDragEnter(
3132 const WebDragData& webDragData, 3132 const WebDragData& webDragData,
3133 const WebPoint& clientPoint, 3133 const WebPoint& clientPoint,
3134 const WebPoint& screenPoint, 3134 const WebPoint& screenPoint,
3135 WebDragOperationsMask operationsAllowed, 3135 WebDragOperationsMask operationsAllowed,
3136 int keyModifiers) 3136 int keyModifiers)
3137 { 3137 {
3138 ASSERT(!m_currentDragData); 3138 ASSERT(!m_currentDragData);
3139 3139
3140 m_currentDragData = webDragData; 3140 m_currentDragData = webDragData.getValue();
3141 m_operationsAllowed = operationsAllowed; 3141 m_operationsAllowed = operationsAllowed;
3142 3142
3143 return dragTargetDragEnterOrOver(clientPoint, screenPoint, DragEnter, keyMod ifiers); 3143 return dragTargetDragEnterOrOver(clientPoint, screenPoint, DragEnter, keyMod ifiers);
3144 } 3144 }
3145 3145
3146 WebDragOperation WebViewImpl::dragTargetDragOver( 3146 WebDragOperation WebViewImpl::dragTargetDragOver(
3147 const WebPoint& clientPoint, 3147 const WebPoint& clientPoint,
3148 const WebPoint& screenPoint, 3148 const WebPoint& screenPoint,
3149 WebDragOperationsMask operationsAllowed, 3149 WebDragOperationsMask operationsAllowed,
3150 int keyModifiers) 3150 int keyModifiers)
(...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after
4023 const PageScaleConstraints& constraints = m_pageScaleConstraintsSet.pageDefi nedConstraints(); 4023 const PageScaleConstraints& constraints = m_pageScaleConstraintsSet.pageDefi nedConstraints();
4024 4024
4025 if (!mainFrameImpl() || !mainFrameImpl()->frameView()) 4025 if (!mainFrameImpl() || !mainFrameImpl()->frameView())
4026 return false; 4026 return false;
4027 4027
4028 return mainFrameImpl()->frameView()->layoutSize().width() == m_size.width 4028 return mainFrameImpl()->frameView()->layoutSize().width() == m_size.width
4029 || (constraints.minimumScale == constraints.maximumScale && constraints. minimumScale != -1); 4029 || (constraints.minimumScale == constraints.maximumScale && constraints. minimumScale != -1);
4030 } 4030 }
4031 4031
4032 } // namespace blink 4032 } // namespace blink
OLDNEW
« no previous file with comments | « Source/web/WebViewImpl.h ('k') | public/platform/WebDragData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698