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.
7 window.addEventListener('message', function(e) {
9 var data = JSON.parse(e.data);
11 case 'dimension-request':
12 var reply = ['dimension-response', window.innerWidth, window.innerHeight];
13 embedder.postMessage(JSON.stringify(reply), '*');