summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorprimiano <primiano@chromium.org>2015-01-16 03:34:47 -0800
committerCommit bot <commit-bot@chromium.org>2015-01-16 11:35:26 +0000
commit71254eee580764979cfeffaef4e57a00ccf171af (patch)
treedf5d7ef51a42543a8225a7e275e2febdb70a6073
parent4f05f5a8b793ec451683dd96c058cbe74037713d (diff)
downloadchromium_src-71254eee580764979cfeffaef4e57a00ccf171af.zip
chromium_src-71254eee580764979cfeffaef4e57a00ccf171af.tar.gz
chromium_src-71254eee580764979cfeffaef4e57a00ccf171af.tar.bz2
[memory-inspector] Force use of https:// schema to fetch JS resources.
The current relative schema was falling on HTTP (because the local python server serves plain HTTP). Furthermore this is causing problems when packaging the Memory Inspector as a standalone web app. BUG=448399 NOTRY=true TBR=petrcermak@chromium.org Review URL: https://codereview.chromium.org/847843003 Cr-Commit-Position: refs/heads/master@{#311866}
-rw-r--r--tools/memory_inspector/memory_inspector/frontends/www_content/index.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/memory_inspector/memory_inspector/frontends/www_content/index.html b/tools/memory_inspector/memory_inspector/frontends/www_content/index.html
index a3db078..c3c053d 100644
--- a/tools/memory_inspector/memory_inspector/frontends/www_content/index.html
+++ b/tools/memory_inspector/memory_inspector/frontends/www_content/index.html
@@ -8,8 +8,8 @@
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>Memory Inspector</title>
- <link href='//fonts.googleapis.com/css?family=Coda' rel='stylesheet' type='text/css'>
- <link href="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/flick/jquery-ui.css" rel="stylesheet">
+ <link href="https://fonts.googleapis.com/css?family=Coda" rel="stylesheet" type="text/css">
+ <link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/flick/jquery-ui.css" rel="stylesheet">
<link href="/css/mmap.css" rel="stylesheet" type="text/css">
<link href="/css/nheap.css" rel="stylesheet" type="text/css">
<link href="/css/processes.css" rel="stylesheet" type="text/css">
@@ -17,9 +17,9 @@
<link href="/css/rootUi.css" rel="stylesheet" type="text/css">
<link href="/css/settings.css" rel="stylesheet" type="text/css">
<link href="/css/storage.css" rel="stylesheet" type="text/css">
- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
- <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
- <script src="//www.google.com/jsapi"></script>
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
+ <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
+ <script src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load('visualization', '1',
{ packages: ['corechart', 'table', 'orgchart', 'treemap'] });