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

Side by Side Diff: perf/dashboard/ui/changelog_v8.html

Issue 1658643004: Add analytics to changelog pages to track usage (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: Created 4 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 | « perf/dashboard/ui/changelog_blink.html ('k') | perf/dashboard/ui/changelog_webrtc.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="js/changelog.js"></script> 3 <script src="js/changelog.js"></script>
4 <script src="js/common.js"></script> 4 <script src="js/common.js"></script>
5 <style type="text/css"> 5 <style type="text/css">
6 table { 6 table {
7 border-collapse: collapse; 7 border-collapse: collapse;
8 } 8 }
9 thead { 9 thead {
10 border-top: solid 1px gray; 10 border-top: solid 1px gray;
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 var svnRootUrl = "http://v8.googlecode.com/svn/"; 61 var svnRootUrl = "http://v8.googlecode.com/svn/";
62 62
63 // Unfortunately V8 doesn't have a ViewVC for the Subversion repo: 63 // Unfortunately V8 doesn't have a ViewVC for the Subversion repo:
64 var viewVc = ""; 64 var viewVc = "";
65 65
66 params = ParseParams(); 66 params = ParseParams();
67 var svnPath = params["url"]; 67 var svnPath = params["url"];
68 var svnRange = params["range"]; 68 var svnRange = params["range"];
69 render_log(svnRootUrl, svnPath, svnRange, viewVc) 69 render_log(svnRootUrl, svnPath, svnRange, viewVc)
70 </script> 70 </script>
71 <script>
72 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
73 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o ),
74 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a ,m)
75 })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
76 ga('create', 'UA-55762617-21', 'auto');
77 ga('send', 'pageview');
78 </script>
71 </body> 79 </body>
72 </html> 80 </html>
73 81
OLDNEW
« no previous file with comments | « perf/dashboard/ui/changelog_blink.html ('k') | perf/dashboard/ui/changelog_webrtc.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698