OLD | NEW |
(Empty) | |
| 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 #include "extensions/browser/api/app_view/app_view_internal_api.h" |
| 6 |
| 7 #include "extensions/browser/api/extensions_api_client.h" |
| 8 #include "extensions/common/api/app_view_internal.h" |
| 9 |
| 10 |
| 11 namespace extensions { |
| 12 |
| 13 namespace appview = core_api::app_view_internal; |
| 14 |
| 15 AppViewInternalAttachFrameFunction:: |
| 16 AppViewInternalAttachFrameFunction() { |
| 17 } |
| 18 |
| 19 bool AppViewInternalAttachFrameFunction::RunAsync() { |
| 20 scoped_ptr<appview::AttachFrame::Params> params( |
| 21 appview::AttachFrame::Params::Create(*args_)); |
| 22 EXTENSION_FUNCTION_VALIDATE(params.get()); |
| 23 |
| 24 GURL url = GetExtension()->GetResourceURL(params->url); |
| 25 EXTENSION_FUNCTION_VALIDATE(url.is_valid()); |
| 26 |
| 27 ExtensionsAPIClient* extensions_client = ExtensionsAPIClient::Get(); |
| 28 return extensions_client->AppViewInternalAttachFrame( |
| 29 browser_context(), |
| 30 url, |
| 31 params->guest_instance_id, |
| 32 extension_id()); |
| 33 } |
| 34 |
| 35 AppViewInternalDenyRequestFunction:: |
| 36 AppViewInternalDenyRequestFunction() { |
| 37 } |
| 38 |
| 39 bool AppViewInternalDenyRequestFunction::RunAsync() { |
| 40 scoped_ptr<appview::DenyRequest::Params> params( |
| 41 appview::DenyRequest::Params::Create(*args_)); |
| 42 EXTENSION_FUNCTION_VALIDATE(params.get()); |
| 43 |
| 44 ExtensionsAPIClient* extensions_client = ExtensionsAPIClient::Get(); |
| 45 // Since the URL passed into AppViewGuest:::CompletePendingRequest is invalid, |
| 46 // a new <appview> WebContents will not be created. |
| 47 return extensions_client->AppViewInternalDenyRequest( |
| 48 browser_context(), |
| 49 params->guest_instance_id, |
| 50 extension_id()); |
| 51 } |
| 52 |
| 53 } // namespace extensions |
OLD | NEW |