OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007-2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2007-2009 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 frontendHost->showContextMenu(event, items); | 117 frontendHost->showContextMenu(event, items); |
118 } | 118 } |
119 | 119 |
120 static void histogramEnumeration(const char* name, const v8::FunctionCallbackInf
o<v8::Value>& info, int boundaryValue) | 120 static void histogramEnumeration(const char* name, const v8::FunctionCallbackInf
o<v8::Value>& info, int boundaryValue) |
121 { | 121 { |
122 if (info.Length() < 1 || !info[0]->IsInt32()) | 122 if (info.Length() < 1 || !info[0]->IsInt32()) |
123 return; | 123 return; |
124 | 124 |
125 int sample = info[0]->ToInt32()->Value(); | 125 int sample = info[0]->ToInt32()->Value(); |
126 if (sample < boundaryValue) | 126 if (sample < boundaryValue) |
127 WebKit::Platform::current()->histogramEnumeration(name, sample, boundary
Value); | 127 blink::Platform::current()->histogramEnumeration(name, sample, boundaryV
alue); |
128 } | 128 } |
129 | 129 |
130 void V8InspectorFrontendHost::recordActionTakenMethodCustom(const v8::FunctionCa
llbackInfo<v8::Value>& info) | 130 void V8InspectorFrontendHost::recordActionTakenMethodCustom(const v8::FunctionCa
llbackInfo<v8::Value>& info) |
131 { | 131 { |
132 histogramEnumeration("DevTools.ActionTaken", info, 100); | 132 histogramEnumeration("DevTools.ActionTaken", info, 100); |
133 } | 133 } |
134 | 134 |
135 void V8InspectorFrontendHost::recordPanelShownMethodCustom(const v8::FunctionCal
lbackInfo<v8::Value>& info) | 135 void V8InspectorFrontendHost::recordPanelShownMethodCustom(const v8::FunctionCal
lbackInfo<v8::Value>& info) |
136 { | 136 { |
137 histogramEnumeration("DevTools.PanelShown", info, 20); | 137 histogramEnumeration("DevTools.PanelShown", info, 20); |
138 } | 138 } |
139 | 139 |
140 void V8InspectorFrontendHost::recordSettingChangedMethodCustom(const v8::Functio
nCallbackInfo<v8::Value>& info) | 140 void V8InspectorFrontendHost::recordSettingChangedMethodCustom(const v8::Functio
nCallbackInfo<v8::Value>& info) |
141 { | 141 { |
142 histogramEnumeration("DevTools.SettingChanged", info, 100); | 142 histogramEnumeration("DevTools.SettingChanged", info, 100); |
143 } | 143 } |
144 | 144 |
145 } // namespace WebCore | 145 } // namespace WebCore |
146 | 146 |
OLD | NEW |