Searched defs:UmaPolicy (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/chrome/browser/extensions/activity_log/
H A Duma_policy.h18 // The UmaPolicy keeps track of how many extensions have read from or modified
19 // a given pageload. UmaPolicy records to a histogram when a given tab is
21 // * If multiple tabs are open for the same URL at the same time, UmaPolicy
23 // * UmaPolicy does not record statistics for incognito tabs. (For privacy.)
24 // * If the number of tabs open exceeds 50, UmaPolicy stops recording stats
26 // * UmaPolicy only handles top frames; stats are not recorded for iframes.
27 class UmaPolicy : public ActivityLogPolicy, class in namespace:extensions
56 explicit UmaPolicy(Profile* profile);
67 virtual ~UmaPolicy();
H A Duma_policy.cc30 const int kNoStatus = UmaPolicy::NONE;
31 const int kContentScript = 1 << UmaPolicy::CONTENT_SCRIPT;
32 const int kReadDom = 1 << UmaPolicy::READ_DOM;
33 const int kModifiedDom = 1 << UmaPolicy::MODIFIED_DOM;
34 const int kDomMethod = 1 << UmaPolicy::DOM_METHOD;
35 const int kDocumentWrite = 1 << UmaPolicy::DOCUMENT_WRITE;
36 const int kInnerHtml = 1 << UmaPolicy::INNER_HTML;
37 const int kCreatedScript = 1 << UmaPolicy::CREATED_SCRIPT;
38 const int kCreatedIframe = 1 << UmaPolicy::CREATED_IFRAME;
39 const int kCreatedDiv = 1 << UmaPolicy
66 UmaPolicy::UmaPolicy(Profile* profile) function in class:extensions::UmaPolicy
[all...]

Completed in 666 milliseconds