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

Side by Side Diff: java/doc/index.html

Issue 1934113002: Update libjpeg_turbo to 1.4.90 from https://github.com/libjpeg-turbo/ (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git@master
Patch Set: Created 4 years, 7 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
(Empty)
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR /html4/frameset.dtd">
2 <!-- NewPage -->
3 <html lang="en">
4 <head>
5 <title>Generated Documentation (Untitled)</title>
6 <script type="text/javascript">
7 targetPage = "" + window.location.search;
8 if (targetPage != "" && targetPage != "undefined")
9 targetPage = targetPage.substring(1);
10 if (targetPage.indexOf(":") != -1 || (targetPage != "" && !validURL(targetPa ge)))
11 targetPage = "undefined";
12 function validURL(url) {
13 try {
14 url = decodeURIComponent(url);
15 }
16 catch (error) {
17 return false;
18 }
19 var pos = url.indexOf(".html");
20 if (pos == -1 || pos != url.length - 5)
21 return false;
22 var allowNumber = false;
23 var allowSep = false;
24 var seenDot = false;
25 for (var i = 0; i < url.length - 5; i++) {
26 var ch = url.charAt(i);
27 if ('a' <= ch && ch <= 'z' ||
28 'A' <= ch && ch <= 'Z' ||
29 ch == '$' ||
30 ch == '_' ||
31 ch.charCodeAt(0) > 127) {
32 allowNumber = true;
33 allowSep = true;
34 } else if ('0' <= ch && ch <= '9'
35 || ch == '-') {
36 if (!allowNumber)
37 return false;
38 } else if (ch == '/' || ch == '.') {
39 if (!allowSep)
40 return false;
41 allowNumber = false;
42 allowSep = false;
43 if (ch == '.')
44 seenDot = true;
45 if (ch == '/' && seenDot)
46 return false;
47 } else {
48 return false;
49 }
50 }
51 return true;
52 }
53 function loadFrames() {
54 if (targetPage != "" && targetPage != "undefined")
55 top.classFrame.location = top.targetPage;
56 }
57 </script>
58 </head>
59 <frameset cols="20%,80%" title="Documentation frame" onload="top.loadFrames()">
60 <frame src="allclasses-frame.html" name="packageFrame" title="All classes and in terfaces (except non-static nested types)">
61 <frame src="org/libjpegturbo/turbojpeg/package-summary.html" name="classFrame" t itle="Package, class and interface descriptions" scrolling="yes">
62 <noframes>
63 <noscript>
64 <div>JavaScript is disabled on your browser.</div>
65 </noscript>
66 <h2>Frame Alert</h2>
67 <p>This document is designed to be viewed using the frames feature. If you see t his message, you are using a non-frame-capable web client. Link to <a href="org/ libjpegturbo/turbojpeg/package-summary.html">Non-frame version</a>.</p>
68 </noframes>
69 </frameset>
70 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698