Roll src/third_party/WebKit d9c6159:8139f33 (svn 201974:201975)
[chromium-blink-merge.git] / extensions / test / data / app_view / apitest / skeleton / main.js
blob2430c37a987f14ed1830a08f10838ff347af85ac
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.
5 chrome.app.runtime.onEmbedRequested.addListener(function(request) {
6   if (!request.data.foo) {
7     request.allow('main.html');
8     return;
9   } else if (request.data.foo == 'bar') {
10     request.deny();
11   } else if (request.data.foo == 'bleep') {
12     request.allow('main.html');
13   }
14 });