Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / resources / gcm_internals.js
1 // Copyright 2014 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 cr.define('gcminternals', function() {
6   'use strict';
7
8   function initialize() {
9   }
10
11   // Return an object with all of the exports.
12   return {
13     initialize: initialize,
14   };
15 });
16
17 document.addEventListener('DOMContentLoaded', gcminternals.initialize);