[Mac] Implement Ambient Light API
[chromium-blink-merge.git] / content / browser / resources / gpu / gpu_internals.js
blob49b43e2553e7228237047064339f08835d56c860
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 <include src="browser_bridge.js"/>
6 <include src="info_view.js"/>
8 var browserBridge;
10 /**
11  * Main entry point. called once the page has loaded.
12  */
13 function onLoad() {
14   browserBridge = new gpu.BrowserBridge();
16   // Create the views.
17   cr.ui.decorate('#info-view', gpu.InfoView);
20 document.addEventListener('DOMContentLoaded', onLoad);