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

Unified Diff: chrome/browser/resources/vr_shell/vr_shell_ui_api.js

Issue 2428383006: Decouple VR Shell DPR and CSS size from Physical Displays. (Closed)
Patch Set: Address bshe comments + minor fix Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/vr_shell/vr_shell_ui_api.js
diff --git a/chrome/browser/resources/vr_shell/vr_shell_ui_api.js b/chrome/browser/resources/vr_shell/vr_shell_ui_api.js
index 8e2fca19573b11132be1c014c3eda7df38f803f0..8f64ed4b0d7fdc07e95808fb2849cac0851b8367 100644
--- a/chrome/browser/resources/vr_shell/vr_shell_ui_api.js
+++ b/chrome/browser/resources/vr_shell/vr_shell_ui_api.js
@@ -101,6 +101,13 @@ var api = (function() {
}
/**
+ * Sets the CSS size for this page.
+ */
+ function setUiCssSize(width, height, dpr) {
+ chrome.send('setUiCssSize', [width, height, dpr]);
+ }
+
+ /**
* Represents updates to UI element properties. Any properties set on this
* object are relayed to an underlying native element via scene command.
* Properties that are not set on this object are left unchanged.
@@ -306,5 +313,6 @@ var api = (function() {
Animation: Animation,
doAction: doAction,
domLoaded: domLoaded,
+ setUiCssSize: setUiCssSize,
};
})();
« no previous file with comments | « chrome/browser/resources/vr_shell/vr_shell_ui.js ('k') | chrome/browser/ui/webui/vr_shell/vr_shell_ui_message_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698