Home
last modified time | relevance | path

Searched refs:deviceInfo (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/chrome/browser/resources/chromeos/
Dmobile_setup.js103 loadPaymentFrame_: function(deviceInfo) { argument
104 if (deviceInfo) {
106 this.deviceInfo_ = deviceInfo;
107 if (deviceInfo.post_data && deviceInfo.post_data.length) {
111 '?post_data=' + escape(deviceInfo.post_data) +
112 '&formUrl=' + escape(deviceInfo.payment_url);
116 deviceInfo.payment_url;
138 changeState_: function(deviceInfo) { argument
139 var newState = deviceInfo.state;
159 if (deviceInfo.activate_over_non_cellular_network)
[all …]
Dmobile_setup_portal.js49 updateDeviceInfo: function(deviceInfo) { argument
50 this.deviceInfo_ = deviceInfo;
123 setPortalFrameIfNeeded_: function(deviceInfo) { argument
129 if (deviceInfo.post_data && deviceInfo.post_data.length)
130 postData = '&post_data=' + encodeURIComponent(deviceInfo.post_data);
133 postData + '&formUrl=' + encodeURIComponent(deviceInfo.payment_url);
204 MobileSetupPortal.onGotDeviceInfo = function(deviceInfo) { argument
205 PortalImpl.getInstance().updateDeviceInfo(deviceInfo);
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
DAwViewportTest.java38 DeviceDisplayInfo deviceInfo = in testTargetDensityDpi() local
42 assertEquals(deviceInfo.getDisplayWidth(), actualWidth, 10f); in testTargetDensityDpi()
44 float displayWidth = (deviceInfo.getDisplayWidth()); in testTargetDensityDpi()
45 float deviceDpi = (float) (160f * deviceInfo.getDIPScale()); in testTargetDensityDpi()
73 DeviceDisplayInfo deviceInfo = in testWideViewportInitialScaleDoesNotExpandFixedLayoutWidth() local
76 float displayWidth = (float) (deviceInfo.getDisplayWidth() / deviceInfo.getDIPScale()); in testWideViewportInitialScaleDoesNotExpandFixedLayoutWidth()
99 DeviceDisplayInfo deviceInfo = in testZeroValuesQuirk() local
102 float displayWidth = (float) (deviceInfo.getDisplayWidth() / deviceInfo.getDIPScale()); in testZeroValuesQuirk()
128 DeviceDisplayInfo deviceInfo = in testScreenSizeInPhysicalPixelsQuirk() local
130 float dipScale = (float) deviceInfo.getDIPScale(); in testScreenSizeInPhysicalPixelsQuirk()
[all …]
DAwSettingsTest.java2389 DeviceDisplayInfo deviceInfo = in useWideViewportLayoutWidthTest() local
2391 int displayWidth = (int) (deviceInfo.getDisplayWidth() / deviceInfo.getDIPScale()); in useWideViewportLayoutWidthTest()
/external/chromium/chrome/browser/resources/
Dmobile_setup.js82 loadPaymentFrame_: function(deviceInfo) { argument
83 if (deviceInfo) {
84 this.deviceInfo_ = deviceInfo;
105 changeState_: function(deviceInfo) { argument
106 var new_state = deviceInfo.state;
150 this.loadPaymentFrame_(deviceInfo);
176 $('finalMessage').textContent = deviceInfo.error;
191 updateDeviceStatus_: function(deviceInfo) { argument
192 this.changeState_(deviceInfo);
250 MobileSetup.deviceStateChanged = function(deviceInfo) { argument
[all …]
/external/chromium_org/chrome/browser/resources/local_discovery/
Dlocal_discovery.js203 var deviceInfo = document.createElement('div');
204 deviceInfo.className = 'device-info';
205 device_dom_element.appendChild(deviceInfo);
210 deviceInfo.appendChild(deviceName);
215 deviceInfo.appendChild(deviceDescription);
/external/chromium_org/third_party/WebKit/Source/testing/helper/
DLayoutTestHelperMac.mm58 …CFDictionaryRef deviceInfo = ColorSyncDeviceCopyDeviceInfo(kColorSyncDisplayDeviceClass, mainDispl…
60 if (!deviceInfo) {
66 …CFDictionaryRef profileInfo = (CFDictionaryRef)CFDictionaryGetValue(deviceInfo, kColorSyncCustomPr…
71 … profileInfo = (CFDictionaryRef)CFDictionaryGetValue(deviceInfo, kColorSyncFactoryProfiles);
77 CFRelease(deviceInfo);