1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_UMA_POLICY_H_
6 #define CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_UMA_POLICY_H_
11 #include "chrome/browser/extensions/activity_log/activity_log_policy.h"
12 #include "chrome/browser/ui/browser_list_observer.h"
13 #include "chrome/browser/ui/tabs/tab_strip_model_observer.h"
16 namespace extensions
{
18 // 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
22 // treats them as if they are the same.
23 // * UmaPolicy does not record statistics for incognito tabs. (For privacy.)
24 // * If the number of tabs open exceeds 50, UmaPolicy stops recording stats
25 // for tabs 51+. (For memory.)
26 // * UmaPolicy only handles top frames; stats are not recorded for iframes.
27 class UmaPolicy
: public ActivityLogPolicy
,
28 public TabStripModelObserver
,
29 public chrome::BrowserListObserver
{
31 // The possible status bits for a pageload. If you alter this, make sure to
32 // also update GetHistogramName.
53 MAX_STATUS
// Insert new page statuses right before this one.
56 explicit UmaPolicy(Profile
* profile
);
58 // ActivityLogPolicy implementation.
59 void ProcessAction(scoped_refptr
<Action
> action
) override
;
60 void Close() override
;
62 // Gets the histogram name associated with each PageStatus.
63 static const char* GetHistogramName(PageStatus status
);
66 // Run when Close() is called.
67 ~UmaPolicy() override
;
70 // Used as a special key in the ExtensionMap.
71 static const char kNumberOfTabs
[];
73 // The max number of tabs we track at a time.
74 static const size_t kMaxTabsTracked
;
76 typedef std::map
<std::string
, int> ExtensionMap
;
77 typedef std::map
<std::string
, ExtensionMap
> SiteMap
;
79 // BrowserListObserver
80 void OnBrowserAdded(Browser
* browser
) override
;
81 void OnBrowserRemoved(Browser
* browser
) override
;
83 // TabStripModelObserver
84 // Fired when a page loads, either as a new tab or replacing the contents of
86 void TabChangedAt(content::WebContents
* contents
,
88 TabChangeType change_type
) override
;
89 // Fired when a tab closes.
90 void TabClosingAt(TabStripModel
* tab_strip_model
,
91 content::WebContents
* contents
,
94 // Assign a status bitmask based on the action's properties.
95 int MatchActionToStatus(scoped_refptr
<Action
> action
);
97 // When a page is opened, add it to the SiteMap url_status_.
98 void SetupOpenedPage(const std::string
& url
);
100 // When a page is closing, remove it from the SiteMap url_status_.
101 void CleanupClosedPage(const std::string
& cleaned_url
,
102 content::WebContents
* web_contents
);
104 // When a page is closing, save statistics about the page to histograms.
105 void HistogramOnClose(const std::string
& cleaned_url
,
106 content::WebContents
* web_contents
);
108 // Standardizes the way URLs are treated.
109 static std::string
CleanURL(const GURL
& gurl
);
111 // Used by UmaPolicyTest.ProcessActionTest.
112 SiteMap
url_status() { return url_status_
; }
116 // URL -> extension id -> page status.
120 std::map
<int32
, std::string
> tab_list_
;
122 FRIEND_TEST_ALL_PREFIXES(UmaPolicyTest
, CleanURLTest
);
123 FRIEND_TEST_ALL_PREFIXES(UmaPolicyTest
, MatchActionToStatusTest
);
124 FRIEND_TEST_ALL_PREFIXES(UmaPolicyTest
, ProcessActionTest
);
125 FRIEND_TEST_ALL_PREFIXES(UmaPolicyTest
, SiteUrlTest
);
128 } // namespace extensions
130 #endif // CHROME_BROWSER_EXTENSIONS_ACTIVITY_LOG_UMA_POLICY_H_