Cast: Stop logging kVideoFrameSentToEncoder and rename a couple events.
[chromium-blink-merge.git] / chrome / browser / resources / gaia_auth / success.js
blob54ed7fac614cb744125d07c20d37e0ccdd70da78
1 // Copyright (c) 2012 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 function load() {
6 var params = getUrlSearchParams(location.search);
7 var msg = {
8 'method': 'confirmLogin',
9 'attemptToken': params['attemptToken']
11 window.parent.postMessage(msg,
12 'chrome-extension://mfffpogegjflfpflabcdkioaeobkgjik/main.html');
15 document.addEventListener('DOMContentLoaded', load);