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

Side by Side Diff: tools/json_schema_compiler/schema_util.py

Issue 12375006: Added UMA stats for extensions events on addListener. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 9 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 """Utilies for the processing of schema python structures. 4 """Utilies for the processing of schema python structures.
5 """ 5 """
6 6
7 import json_parse 7 import json_parse
8 8
9 def CapitalizeFirstLetter(value): 9 def CapitalizeFirstLetter(value):
10 return value[0].capitalize() + value[1:] 10 return value[0].capitalize() + value[1:]
11 11
12 def GetNamespace(ref): 12 def GetNamespace(ref):
13 return SplitNamespace(ref)[0] 13 return SplitNamespace(ref)[0]
14 14
15 def StripNamespace(ref): 15 def StripNamespace(ref):
16 return SplitNamespace(ref)[1] 16 return SplitNamespace(ref)[1]
17 17
18 def SplitNamespace(ref): 18 def SplitNamespace(ref):
19 """Returns (namespace, entity) from |ref|, e.g. app.window.AppWindow -> 19 """Returns (namespace, entity) from |ref|, e.g. app.window.AppWindow ->
20 (app.window, AppWindow). If |ref| isn't qualified then returns (None, ref). 20 (app.window, AppWindow). If |ref| isn't qualified then returns (None, ref).
21 """ 21 """
22 if '.' in ref: 22 if '.' in ref:
23 return tuple(ref.rsplit('.', 1)) 23 return tuple(ref.rsplit('.', 1))
24 return (None, ref) 24 return (None, ref)
25 25
26 def JsEventNameToHistogramValue(namespace_name, event_name):
27 """Transform a fully qualified event name like foo.bar.baz into FOO_BAR_BAZ
28
29 Format based on
30 chrome/browser/extensions/extension_event_histogram_value.h .
31
32 DOES NOT strip any leading 'experimental' prefix."""
33 full_name = namespace_name + "." + event_name
34 return full_name.upper().replace(".", "_")
35
26 def JsFunctionNameToClassName(namespace_name, function_name): 36 def JsFunctionNameToClassName(namespace_name, function_name):
27 """Transform a fully qualified function name like foo.bar.baz into FooBarBaz 37 """Transform a fully qualified function name like foo.bar.baz into FooBarBaz
28 38
29 Also strips any leading 'Experimental' prefix.""" 39 Also strips any leading 'Experimental' prefix."""
30 parts = [] 40 parts = []
31 full_name = namespace_name + "." + function_name 41 full_name = namespace_name + "." + function_name
32 for part in full_name.split("."): 42 for part in full_name.split("."):
33 parts.append(CapitalizeFirstLetter(part)) 43 parts.append(CapitalizeFirstLetter(part))
34 if parts[0] == "Experimental": 44 if parts[0] == "Experimental":
35 del parts[0] 45 del parts[0]
36 class_name = "".join(parts) 46 class_name = "".join(parts)
37 return class_name 47 return class_name
OLDNEW
« chrome/browser/extensions/event_router.cc ('K') | « tools/json_schema_compiler/model.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698