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

Side by Side Diff: chrome/browser/resources/pdf/navigator.js

Issue 918953002: Fix for PDFs with lots of named destinations take a long time to load. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 'use strict'; 5 'use strict';
6 6
7 /** 7 /**
8 * Creates a new Navigator for navigating to links inside or outside the PDF. 8 * Creates a new Navigator for navigating to links inside or outside the PDF.
9 * @param {string} originalUrl The original page URL. 9 * @param {string} originalUrl The original page URL.
10 * @param {Object} viewport The viewport info of the page. 10 * @param {Object} viewport The viewport info of the page.
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 } 64 }
65 // Make sure inputURL is not only a scheme. 65 // Make sure inputURL is not only a scheme.
66 if (url == 'http://' || 66 if (url == 'http://' ||
67 url == 'https://' || 67 url == 'https://' ||
68 url == 'ftp://' || 68 url == 'ftp://' ||
69 url == 'file://' || 69 url == 'file://' ||
70 url == 'mailto:') { 70 url == 'mailto:') {
71 return; 71 return;
72 } 72 }
73 73
74 if (newTab) { 74 if (newTab)
75 this.navigateInNewTabCallback_(url); 75 this.navigateInNewTabCallback_(url);
76 } else { 76 else
77 var pageNumber = 77 this.navigateInCurrentTabCallback_(url);
78 this.paramsParser_.getViewportFromUrlParams(url).page;
79 if (pageNumber != undefined)
80 this.viewport_.goToPage(pageNumber);
81 else
82 this.navigateInCurrentTabCallback_(url);
83 }
raymes 2015/02/12 22:19:04 None of this should be removed. Instead the code s
84 } 78 }
85 }; 79 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698