Chromium Code Reviews| Index: chrome/browser/bookmarks/bookmark_utils.h |
| diff --git a/chrome/browser/bookmarks/bookmark_utils.h b/chrome/browser/bookmarks/bookmark_utils.h |
| index d7f0aee2d46aea5d6f0d62b3351b45ba4597f631..addbf772f5da3a371fc6240795885b329636eb52 100644 |
| --- a/chrome/browser/bookmarks/bookmark_utils.h |
| +++ b/chrome/browser/bookmarks/bookmark_utils.h |
| @@ -231,6 +231,18 @@ void RemoveAllBookmarks(BookmarkModel* model, const GURL& url); |
| // value. |
| extern int num_urls_before_prompting; |
| +// This enum is used for the Bookmarks.EntryPoint histogram. |
| +enum BoomarkEntryPoint { |
| + BOOKMARK_ENTRY_POINT_NONE, |
|
tfarina
2012/09/03 11:33:03
nit: indent two spaces only
|
| + BOOKMARK_ENTRY_POINT_ACCELERATOR = 0, |
| + BOOKMARK_ENTRY_POINT_STAR_GESTURE, |
| + BOOKMARK_ENTRY_POINT_STAR_KEY, |
| + BOOKMARK_ENTRY_POINT_STAR_MOUSE, |
| + BOOKMARK_ENTRY_POINT_STAR_SHORTCUT, |
| + |
| + BOOKMARK_ENTRY_POINT_LIMIT // Keep this last. |
| +}; |
| + |
| // This enum is used for the Bookmarks.LaunchLocation histogram. |
| enum BookmarkLaunchLocation { |
| LAUNCH_NONE, |