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

Unified Diff: ios/chrome/browser/ui/contextual_search/resources/contextualsearch.js

Issue 2817943002: Fully deprecate core.js. Moved last method to error.js. (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
Index: ios/chrome/browser/ui/contextual_search/resources/contextualsearch.js
diff --git a/ios/chrome/browser/ui/contextual_search/resources/contextualsearch.js b/ios/chrome/browser/ui/contextual_search/resources/contextualsearch.js
index ae36f5981389e757b8e605153df2e8512a34da73..2b93124a027a1078d0a74c492488dacbb955fb8e 100644
--- a/ios/chrome/browser/ui/contextual_search/resources/contextualsearch.js
+++ b/ios/chrome/browser/ui/contextual_search/resources/contextualsearch.js
@@ -786,7 +786,7 @@ Context.getContextDataFromPoint = function(x, y) {
* @private
*/
Context.contextFromPoint = function(x, y) {
- // Should this use core.js's elementFromPoint_() instead?
+ // Should this use context_menu.js's elementFromPoint_() instead?
Eugene But (OOO till 7-30) 2017/04/13 16:30:06 Would you mind filing a bug and adding a TODO for
danyao 2017/04/13 17:40:45 Done.
var contextData = new ContextData();
var element = document.elementFromPoint(x, y);
if (!element) {

Powered by Google App Engine
This is Rietveld 408576698