| Index: chrome/browser/resources/gpu_internals/browser_bridge.js
|
| ===================================================================
|
| --- chrome/browser/resources/gpu_internals/browser_bridge.js (revision 155871)
|
| +++ chrome/browser/resources/gpu_internals/browser_bridge.js (working copy)
|
| @@ -26,7 +26,6 @@
|
| if (!this.debugMode_) {
|
| chrome.send('browserBridgeInitialized');
|
| this.beginRequestClientInfo_();
|
| - this.beginRequestSandboxInfo_();
|
| this.beginRequestLogMessages_();
|
| this.beginRequestCrashList_();
|
| }
|
| @@ -39,11 +38,9 @@
|
| // set up things according to the simulated data
|
| this.gpuInfo_ = data.gpuInfo;
|
| this.clientInfo_ = data.clientInfo;
|
| - this.sandboxInfo_ = data.sandboxInfo;
|
| this.logMessages_ = data.logMessages;
|
| cr.dispatchSimpleEvent(this, 'gpuInfoUpdate');
|
| cr.dispatchSimpleEvent(this, 'clientInfoChange');
|
| - cr.dispatchSimpleEvent(this, 'sandboxInfoChange');
|
| cr.dispatchSimpleEvent(this, 'logMessagesChange');
|
| },
|
|
|
| @@ -121,28 +118,6 @@
|
| },
|
|
|
| /**
|
| - * This function begins a request for the SandboxInfo. If it comes back
|
| - * as undefined, then we will issue the request again in 250ms.
|
| - */
|
| - beginRequestSandboxInfo_: function() {
|
| - this.callAsync('requestSandboxInfo', undefined, (function(data) {
|
| - if (data === undefined) { // try again in 250 ms
|
| - window.setTimeout(this.beginRequestSandboxInfo_.bind(this), 250);
|
| - } else {
|
| - this.sandboxInfo_ = data;
|
| - cr.dispatchSimpleEvent(this, 'sandboxInfoChange');
|
| - }
|
| - }).bind(this));
|
| - },
|
| -
|
| - /**
|
| - * Returns information about the currently runnign Chrome sandbox.
|
| - */
|
| - get sandboxInfo() {
|
| - return this.sandboxInfo_;
|
| - },
|
| -
|
| - /**
|
| * This function checks for new GPU_LOG messages.
|
| * If any are found, a refresh is triggered.
|
| */
|
|
|
| Property changes on: chrome/browser/resources/gpu_internals/browser_bridge.js
|
| ___________________________________________________________________
|
| Deleted: svn:mime-type
|
| - text/javascript
|
|
|
|
|