diff options
author | Zeno Albisser <zeno.albisser@digia.com> | 2013-08-15 21:46:11 +0200 |
---|---|---|
committer | Zeno Albisser <zeno.albisser@digia.com> | 2013-08-15 21:46:11 +0200 |
commit | 679147eead574d186ebf3069647b4c23e8ccace6 (patch) | |
tree | fc247a0ac8ff119f7c8550879ebb6d3dd8d1ff69 /chromium/content/browser/resources/gpu/gpu_internals.js | |
download | qtwebengine-chromium-679147eead574d186ebf3069647b4c23e8ccace6.tar.gz |
Initial import.
Diffstat (limited to 'chromium/content/browser/resources/gpu/gpu_internals.js')
-rw-r--r-- | chromium/content/browser/resources/gpu/gpu_internals.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/chromium/content/browser/resources/gpu/gpu_internals.js b/chromium/content/browser/resources/gpu/gpu_internals.js new file mode 100644 index 00000000000..49b43e2553e --- /dev/null +++ b/chromium/content/browser/resources/gpu/gpu_internals.js @@ -0,0 +1,20 @@ +// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +<include src="browser_bridge.js"/> +<include src="info_view.js"/> + +var browserBridge; + +/** + * Main entry point. called once the page has loaded. + */ +function onLoad() { + browserBridge = new gpu.BrowserBridge(); + + // Create the views. + cr.ui.decorate('#info-view', gpu.InfoView); +} + +document.addEventListener('DOMContentLoaded', onLoad); |