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

Side by Side Diff: Source/devtools/front_end/common/Platform.js

Issue 340513003: DevTools: Add JSDoc for static methods, fix JSDoc types and induced errors (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2014 Google Inc. All rights reserved. 2 * Copyright (C) 2014 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the 11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution. 12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of 13 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
14 * its contributors may be used to endorse or promote products derived 14 * its contributors may be used to endorse or promote products derived
15 * from this software without specific prior written permission. 15 * from this software without specific prior written permission.
16 * 16 *
17 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY 17 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 19 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY 20 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 21 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */ 27 */
28 28
29 /**
30 * @return {string}
31 */
29 WebInspector.platform = function() 32 WebInspector.platform = function()
30 { 33 {
31 if (!WebInspector._platform) 34 if (!WebInspector._platform)
32 WebInspector._platform = InspectorFrontendHost.platform(); 35 WebInspector._platform = InspectorFrontendHost.platform();
33 return WebInspector._platform; 36 return WebInspector._platform;
34 } 37 }
35 38
39 /**
40 * @return {boolean}
41 */
36 WebInspector.isMac = function() 42 WebInspector.isMac = function()
37 { 43 {
38 if (typeof WebInspector._isMac === "undefined") 44 if (typeof WebInspector._isMac === "undefined")
39 WebInspector._isMac = WebInspector.platform() === "mac"; 45 WebInspector._isMac = WebInspector.platform() === "mac";
40 46
41 return WebInspector._isMac; 47 return WebInspector._isMac;
42 } 48 }
43 49
50 /**
51 * @return {boolean}
52 */
44 WebInspector.isWin = function() 53 WebInspector.isWin = function()
45 { 54 {
46 if (typeof WebInspector._isWin === "undefined") 55 if (typeof WebInspector._isWin === "undefined")
47 WebInspector._isWin = WebInspector.platform() === "windows"; 56 WebInspector._isWin = WebInspector.platform() === "windows";
48 57
49 return WebInspector._isWin; 58 return WebInspector._isWin;
50 } 59 }
51 60
52 WebInspector.PlatformFlavor = { 61 WebInspector.PlatformFlavor = {
53 WindowsVista: "windows-vista", 62 WindowsVista: "windows-vista",
54 MacTiger: "mac-tiger", 63 MacTiger: "mac-tiger",
55 MacLeopard: "mac-leopard", 64 MacLeopard: "mac-leopard",
56 MacSnowLeopard: "mac-snowleopard", 65 MacSnowLeopard: "mac-snowleopard",
57 MacLion: "mac-lion" 66 MacLion: "mac-lion"
58 } 67 }
59 68
69 /**
70 * @return {string}
71 */
60 WebInspector.platformFlavor = function() 72 WebInspector.platformFlavor = function()
61 { 73 {
62 function detectFlavor() 74 function detectFlavor()
63 { 75 {
64 const userAgent = navigator.userAgent; 76 const userAgent = navigator.userAgent;
65 77
66 if (WebInspector.platform() === "windows") { 78 if (WebInspector.platform() === "windows") {
67 var match = userAgent.match(/Windows NT (\d+)\.(?:\d+)/); 79 var match = userAgent.match(/Windows NT (\d+)\.(?:\d+)/);
68 if (match && match[1] >= 6) 80 if (match && match[1] >= 6)
69 return WebInspector.PlatformFlavor.WindowsVista; 81 return WebInspector.PlatformFlavor.WindowsVista;
(...skipping 18 matching lines...) Expand all
88 } 100 }
89 } 101 }
90 } 102 }
91 103
92 if (!WebInspector._platformFlavor) 104 if (!WebInspector._platformFlavor)
93 WebInspector._platformFlavor = detectFlavor(); 105 WebInspector._platformFlavor = detectFlavor();
94 106
95 return WebInspector._platformFlavor; 107 return WebInspector._platformFlavor;
96 } 108 }
97 109
110 /**
111 * @return {string}
112 */
98 WebInspector.port = function() 113 WebInspector.port = function()
99 { 114 {
100 if (!WebInspector._port) 115 if (!WebInspector._port)
101 WebInspector._port = InspectorFrontendHost.port(); 116 WebInspector._port = InspectorFrontendHost.port();
102 117
103 return WebInspector._port; 118 return WebInspector._port;
104 } 119 }
105 120
106 /** 121 /**
107 * @return {string} 122 * @return {string}
(...skipping 29 matching lines...) Expand all
137 break; 152 break;
138 case "mac": 153 case "mac":
139 WebInspector._monospaceFontFamily = "Menlo, monospace"; 154 WebInspector._monospaceFontFamily = "Menlo, monospace";
140 break; 155 break;
141 case "windows": 156 case "windows":
142 WebInspector._monospaceFontFamily = "Consolas, monospace"; 157 WebInspector._monospaceFontFamily = "Consolas, monospace";
143 break; 158 break;
144 } 159 }
145 return WebInspector._monospaceFontFamily; 160 return WebInspector._monospaceFontFamily;
146 } 161 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698