Seperate the API implementation of WebViewManager
This commit is contained in:
parent
ea99037f3b
commit
209840871c
4 changed files with 73 additions and 64 deletions
1
atom.gyp
1
atom.gyp
|
@ -88,6 +88,7 @@
|
||||||
'atom/browser/api/atom_api_tray.h',
|
'atom/browser/api/atom_api_tray.h',
|
||||||
'atom/browser/api/atom_api_web_contents.cc',
|
'atom/browser/api/atom_api_web_contents.cc',
|
||||||
'atom/browser/api/atom_api_web_contents.h',
|
'atom/browser/api/atom_api_web_contents.h',
|
||||||
|
'atom/browser/api/atom_api_web_view_manager.cc',
|
||||||
'atom/browser/api/atom_api_window.cc',
|
'atom/browser/api/atom_api_window.cc',
|
||||||
'atom/browser/api/atom_api_window.h',
|
'atom/browser/api/atom_api_window.h',
|
||||||
'atom/browser/api/event.cc',
|
'atom/browser/api/event.cc',
|
||||||
|
|
70
atom/browser/api/atom_api_web_view_manager.cc
Normal file
70
atom/browser/api/atom_api_web_view_manager.cc
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
// Copyright (c) 2015 GitHub, Inc.
|
||||||
|
// Use of this source code is governed by the MIT license that can be
|
||||||
|
// found in the LICENSE file.
|
||||||
|
|
||||||
|
#include "atom/browser/api/atom_api_web_contents.h"
|
||||||
|
#include "atom/browser/atom_browser_context.h"
|
||||||
|
#include "atom/browser/web_view_manager.h"
|
||||||
|
#include "atom/common/native_mate_converters/gurl_converter.h"
|
||||||
|
#include "native_mate/dictionary.h"
|
||||||
|
#include "net/base/filename_util.h"
|
||||||
|
|
||||||
|
#include "atom/common/node_includes.h"
|
||||||
|
|
||||||
|
namespace mate {
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct Converter<content::WebContents*> {
|
||||||
|
static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,
|
||||||
|
content::WebContents** out) {
|
||||||
|
atom::api::WebContents* contents;
|
||||||
|
if (!Converter<atom::api::WebContents*>::FromV8(isolate, val, &contents))
|
||||||
|
return false;
|
||||||
|
*out = contents->web_contents();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template<>
|
||||||
|
struct Converter<atom::WebViewManager::WebViewInfo> {
|
||||||
|
static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,
|
||||||
|
atom::WebViewManager::WebViewInfo* out) {
|
||||||
|
Dictionary options;
|
||||||
|
if (!ConvertFromV8(isolate, val, &options))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
GURL preload_url;
|
||||||
|
if (!options.Get("preloadUrl", &preload_url))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if (!preload_url.is_empty() &&
|
||||||
|
!net::FileURLToFilePath(preload_url, &(out->preload_script)))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
return options.Get("nodeIntegration", &(out->node_integration)) &&
|
||||||
|
options.Get("plugins", &(out->plugins)) &&
|
||||||
|
options.Get("disableWebSecurity", &(out->disable_web_security));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace mate
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
|
||||||
|
void Initialize(v8::Handle<v8::Object> exports, v8::Handle<v8::Value> unused,
|
||||||
|
v8::Handle<v8::Context> context, void* priv) {
|
||||||
|
using atom::WebViewManager;
|
||||||
|
auto manager = static_cast<WebViewManager*>(
|
||||||
|
atom::AtomBrowserContext::Get()->GetGuestManager());
|
||||||
|
mate::Dictionary dict(context->GetIsolate(), exports);
|
||||||
|
dict.SetMethod("addGuest",
|
||||||
|
base::Bind(&WebViewManager::AddGuest,
|
||||||
|
base::Unretained(manager)));
|
||||||
|
dict.SetMethod("removeGuest",
|
||||||
|
base::Bind(&WebViewManager::RemoveGuest,
|
||||||
|
base::Unretained(manager)));
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace
|
||||||
|
|
||||||
|
NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_browser_web_view_manager, Initialize)
|
|
@ -4,52 +4,9 @@
|
||||||
|
|
||||||
#include "atom/browser/web_view_manager.h"
|
#include "atom/browser/web_view_manager.h"
|
||||||
|
|
||||||
#include "atom/browser/api/atom_api_web_contents.h"
|
|
||||||
#include "atom/browser/atom_browser_context.h"
|
#include "atom/browser/atom_browser_context.h"
|
||||||
#include "atom/common/native_mate_converters/gurl_converter.h"
|
|
||||||
#include "content/public/browser/render_process_host.h"
|
#include "content/public/browser/render_process_host.h"
|
||||||
#include "native_mate/dictionary.h"
|
#include "content/public/browser/web_contents.h"
|
||||||
#include "net/base/filename_util.h"
|
|
||||||
|
|
||||||
#include "atom/common/node_includes.h"
|
|
||||||
|
|
||||||
namespace mate {
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct Converter<content::WebContents*> {
|
|
||||||
static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,
|
|
||||||
content::WebContents** out) {
|
|
||||||
atom::api::WebContents* contents;
|
|
||||||
if (!Converter<atom::api::WebContents*>::FromV8(isolate, val, &contents))
|
|
||||||
return false;
|
|
||||||
*out = contents->web_contents();
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
template<>
|
|
||||||
struct Converter<atom::WebViewManager::WebViewInfo> {
|
|
||||||
static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,
|
|
||||||
atom::WebViewManager::WebViewInfo* out) {
|
|
||||||
Dictionary options;
|
|
||||||
if (!ConvertFromV8(isolate, val, &options))
|
|
||||||
return false;
|
|
||||||
|
|
||||||
GURL preload_url;
|
|
||||||
if (!options.Get("preloadUrl", &preload_url))
|
|
||||||
return false;
|
|
||||||
|
|
||||||
if (!preload_url.is_empty() &&
|
|
||||||
!net::FileURLToFilePath(preload_url, &(out->preload_script)))
|
|
||||||
return false;
|
|
||||||
|
|
||||||
return options.Get("nodeIntegration", &(out->node_integration)) &&
|
|
||||||
options.Get("plugins", &(out->plugins)) &&
|
|
||||||
options.Get("disableWebSecurity", &(out->disable_web_security));
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace mate
|
|
||||||
|
|
||||||
namespace atom {
|
namespace atom {
|
||||||
|
|
||||||
|
@ -144,23 +101,3 @@ bool WebViewManager::ForEachGuest(content::WebContents* embedder_web_contents,
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace atom
|
} // namespace atom
|
||||||
|
|
||||||
namespace {
|
|
||||||
|
|
||||||
void Initialize(v8::Handle<v8::Object> exports, v8::Handle<v8::Value> unused,
|
|
||||||
v8::Handle<v8::Context> context, void* priv) {
|
|
||||||
using atom::WebViewManager;
|
|
||||||
auto manager = static_cast<WebViewManager*>(
|
|
||||||
atom::AtomBrowserContext::Get()->GetGuestManager());
|
|
||||||
mate::Dictionary dict(context->GetIsolate(), exports);
|
|
||||||
dict.SetMethod("addGuest",
|
|
||||||
base::Bind(&WebViewManager::AddGuest,
|
|
||||||
base::Unretained(manager)));
|
|
||||||
dict.SetMethod("removeGuest",
|
|
||||||
base::Bind(&WebViewManager::RemoveGuest,
|
|
||||||
base::Unretained(manager)));
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace
|
|
||||||
|
|
||||||
NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_browser_web_view_manager, Initialize)
|
|
||||||
|
|
|
@ -66,6 +66,7 @@ REFERENCE_MODULE(atom_browser_protocol);
|
||||||
REFERENCE_MODULE(atom_browser_global_shortcut);
|
REFERENCE_MODULE(atom_browser_global_shortcut);
|
||||||
REFERENCE_MODULE(atom_browser_tray);
|
REFERENCE_MODULE(atom_browser_tray);
|
||||||
REFERENCE_MODULE(atom_browser_web_contents);
|
REFERENCE_MODULE(atom_browser_web_contents);
|
||||||
|
REFERENCE_MODULE(atom_browser_web_view_manager);
|
||||||
REFERENCE_MODULE(atom_browser_window);
|
REFERENCE_MODULE(atom_browser_window);
|
||||||
REFERENCE_MODULE(atom_common_asar);
|
REFERENCE_MODULE(atom_common_asar);
|
||||||
REFERENCE_MODULE(atom_common_clipboard);
|
REFERENCE_MODULE(atom_common_clipboard);
|
||||||
|
|
Loading…
Reference in a new issue