Upstream version 11.40.277.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / devtools / front_end / host / Platform.js
1 /*
2  * Copyright (C) 2014 Google Inc.  All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * 1.  Redistributions of source code must retain the above copyright
9  *     notice, this list of conditions and the following disclaimer.
10  * 2.  Redistributions in binary form must reproduce the above copyright
11  *     notice, this list of conditions and the following disclaimer in the
12  *     documentation and/or other materials provided with the distribution.
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
15  *     from this software without specific prior written permission.
16  *
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
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
21  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
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
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
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 /**
30  * @return {string}
31  */
32 WebInspector.platform = function()
33 {
34     if (!WebInspector._platform)
35         WebInspector._platform = InspectorFrontendHost.platform();
36     return WebInspector._platform;
37 }
38
39 /**
40  * @return {boolean}
41  */
42 WebInspector.isMac = function()
43 {
44     if (typeof WebInspector._isMac === "undefined")
45         WebInspector._isMac = WebInspector.platform() === "mac";
46
47     return WebInspector._isMac;
48 }
49
50 /**
51  * @return {boolean}
52  */
53 WebInspector.isWin = function()
54 {
55     if (typeof WebInspector._isWin === "undefined")
56         WebInspector._isWin = WebInspector.platform() === "windows";
57
58     return WebInspector._isWin;
59 }
60
61 /**
62  * @return {string}
63  */
64 WebInspector.port = function()
65 {
66     if (!WebInspector._port)
67         WebInspector._port = InspectorFrontendHost.port();
68
69     return WebInspector._port;
70 }
71
72 /**
73  * @return {string}
74  */
75 WebInspector.fontFamily = function()
76 {
77     if (WebInspector._fontFamily)
78         return WebInspector._fontFamily;
79     switch (WebInspector.platform()) {
80     case "linux":
81         WebInspector._fontFamily = "Ubuntu, Arial, sans-serif";
82         break;
83     case "mac":
84         WebInspector._fontFamily = "'Lucida Grande', sans-serif";
85         break;
86     case "windows":
87         WebInspector._fontFamily = "'Segoe UI', Tahoma, sans-serif";
88         break;
89     }
90     return WebInspector._fontFamily;
91 }
92
93 /**
94  * @return {string}
95  */
96 WebInspector.monospaceFontFamily = function()
97 {
98     if (WebInspector._monospaceFontFamily)
99         return WebInspector._monospaceFontFamily;
100     switch (WebInspector.platform()) {
101     case "linux":
102         WebInspector._monospaceFontFamily = "dejavu sans mono, monospace";
103         break;
104     case "mac":
105         WebInspector._monospaceFontFamily = "Menlo, monospace";
106         break;
107     case "windows":
108         WebInspector._monospaceFontFamily = "Consolas, monospace";
109         break;
110     }
111     return WebInspector._monospaceFontFamily;
112 }
113
114 /**
115  * @return {boolean}
116  */
117 WebInspector.isWorkerFrontend = function()
118 {
119     return !!Runtime.queryParam("isSharedWorker");
120 }