-
Notifications
You must be signed in to change notification settings - Fork 218
Conversation
|
app/src/common/shared/org/mozilla/vrbrowser/VRBrowserActivity.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do you want to queue your multiple window telemetry at onDestory()?
942f326
to
8f603ea
Compare
40017bc
to
8bd10c8
Compare
5938b4a
to
2a058e1
Compare
af4db93
to
9a95e61
Compare
@daoshengmu I've added some logs so all the multi-window related telemetry can be seen at the end of the session. Let me know if you catch anything. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not sure and I might be wrong. If we queue histogram is onDestroy
, we will too late to do scheduleUpload our metric. We need to confirm it. Other parts are LGTM.
app/src/common/shared/org/mozilla/vrbrowser/VRBrowserActivity.java
Outdated
Show resolved
Hide resolved
We probably will start to replace our existing telemetry service to |
app/src/common/shared/org/mozilla/vrbrowser/telemetry/TelemetryWrapper.java
Show resolved
Hide resolved
7ed2d3f
to
9e3f9c2
Compare
766557a
to
3f23f46
Compare
@daoshengmu Just FYI I've removed the the Telemetry queueing from |
3f23f46
to
76fca49
Compare
I just took a look at According to #1353 (comment), our |
* Remove unused code * Sessions Multiwindow implementation Refactor of the current sessions code and added support for multi window. * Implement window placement logic * Refactored session settings to SessionManager Always update all session when a session settings changes * Keyboard multiwindow placement * Added support for browser context menus * Context Menu integration * Fix parenting bug with three window moves * Fix relayout on window resize. Set up better anchor points for left/right window resizes. * Fixed Bookmarks navigation Also added support for bookmarks in all the windows as stated in the spec: #1331 * Close sessions when a window is closed Now when a window it's closed it's underlying sessions are closed. * Add new tray icons * Session restore wip * Fix resize gesture flickering and conflicts. * Added support for restoring private sessions * Save and restore window sizes * Set up max reside sizes for multiwindow * Exit fullscreen when window is closed Also fixed a regression that made session not to close when a window is closed * Fix fullscreen mode: hide other windows and make the fullscreened window the front one * Fixed ADB issue and double loadUri when restoring windows. * Make max windows dialog match spec * Curved mode fixes * Fix rebase issues * Fix cylindrical mode math for multiwindow. * Fixed performance monitor from rebase and added missing tooltips * Rebase fixes * New Settings spec rebase fixes * Added User-Agent multi-window support and fixed session restore issues The home page was being loaded after a session restore. Now the home page is only loaded if the session is not restored. Also fixed some session restore issues to also restore session settings. * Fix Tasckluster NoApi compilation issue * Fixed context menu issues * More ContextMenu fixes * Fixed move window buttons get stuck in hover state Fixes #1482 * Disable left/right move buttons when in private mode single window * Multi-window Telemetry (#1443) * Remove unneeded switchBookmarks call which causes a surface resize each time windows are updated * Dime out world when closing a window * Rebase fixes * SessionStore rename * Fix for session restore in WaveVR * Fix movable keyboard for multiwindow * Rebase fixes
Added telemetry events from #1329