• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.
4
5<include src="browser_bridge.js"/>
6<include src="info_view.js"/>
7
8var browserBridge;
9
10/**
11 * Main entry point. called once the page has loaded.
12 */
13function onLoad() {
14  browserBridge = new gpu.BrowserBridge();
15
16  // Create the views.
17  cr.ui.decorate('#info-view', gpu.InfoView);
18}
19
20document.addEventListener('DOMContentLoaded', onLoad);
21