2013-04-12 01:46:58 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-12 01:46:58 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/atom_browser_client.h"
|
2013-04-12 01:46:58 +00:00
|
|
|
|
2014-08-13 04:12:43 +00:00
|
|
|
#include "atom/browser/atom_access_token_store.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/atom_browser_context.h"
|
|
|
|
#include "atom/browser/atom_browser_main_parts.h"
|
2014-08-11 06:08:23 +00:00
|
|
|
#include "atom/browser/atom_resource_dispatcher_host_delegate.h"
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/native_window.h"
|
|
|
|
#include "atom/browser/window_list.h"
|
2014-08-22 07:03:39 +00:00
|
|
|
#include "chrome/browser/printing/printing_message_filter.h"
|
2014-10-07 13:27:15 +00:00
|
|
|
#include "chrome/browser/speech/tts_message_filter.h"
|
2014-01-30 13:57:01 +00:00
|
|
|
#include "content/public/browser/render_process_host.h"
|
2014-03-06 03:07:04 +00:00
|
|
|
#include "content/public/browser/render_view_host.h"
|
2014-08-11 06:08:23 +00:00
|
|
|
#include "content/public/browser/resource_dispatcher_host.h"
|
2014-01-31 02:30:16 +00:00
|
|
|
#include "content/public/browser/site_instance.h"
|
2014-01-30 13:57:01 +00:00
|
|
|
#include "content/public/browser/web_contents.h"
|
2014-05-29 07:21:15 +00:00
|
|
|
#include "ui/base/l10n/l10n_util.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
#include "webkit/common/webpreferences.h"
|
2013-04-12 01:46:58 +00:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
2014-01-31 02:30:16 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
struct FindByProcessId {
|
2014-01-31 07:53:01 +00:00
|
|
|
explicit FindByProcessId(int child_process_id)
|
|
|
|
: child_process_id_(child_process_id) {
|
2014-01-31 02:30:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator() (NativeWindow* const window) {
|
2014-07-11 11:39:35 +00:00
|
|
|
content::WebContents* web_contents = window->GetWebContents();
|
|
|
|
if (!web_contents)
|
|
|
|
return false;
|
|
|
|
|
2014-01-31 02:30:16 +00:00
|
|
|
int id = window->GetWebContents()->GetRenderProcessHost()->GetID();
|
|
|
|
return id == child_process_id_;
|
|
|
|
}
|
|
|
|
|
|
|
|
int child_process_id_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
AtomBrowserClient::AtomBrowserClient()
|
|
|
|
: dying_render_process_(NULL) {
|
2013-04-12 01:46:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
AtomBrowserClient::~AtomBrowserClient() {
|
|
|
|
}
|
|
|
|
|
2014-08-21 13:19:43 +00:00
|
|
|
void AtomBrowserClient::RenderProcessWillLaunch(
|
|
|
|
content::RenderProcessHost* host) {
|
2014-10-07 13:27:15 +00:00
|
|
|
int id = host->GetID();
|
2014-08-21 13:19:43 +00:00
|
|
|
host->AddFilter(new PrintingMessageFilter(host->GetID()));
|
2014-10-07 13:27:15 +00:00
|
|
|
host->AddFilter(new TtsMessageFilter(id, host->GetBrowserContext()));
|
2014-08-21 13:19:43 +00:00
|
|
|
}
|
|
|
|
|
2014-08-11 06:08:23 +00:00
|
|
|
void AtomBrowserClient::ResourceDispatcherHostCreated() {
|
|
|
|
resource_dispatcher_delegate_.reset(new AtomResourceDispatcherHostDelegate);
|
|
|
|
content::ResourceDispatcherHost::Get()->SetDelegate(
|
|
|
|
resource_dispatcher_delegate_.get());
|
|
|
|
}
|
|
|
|
|
2014-08-13 04:12:43 +00:00
|
|
|
content::AccessTokenStore* AtomBrowserClient::CreateAccessTokenStore() {
|
|
|
|
return new AtomAccessTokenStore;
|
|
|
|
}
|
|
|
|
|
2013-04-12 12:48:02 +00:00
|
|
|
void AtomBrowserClient::OverrideWebkitPrefs(
|
|
|
|
content::RenderViewHost* render_view_host,
|
|
|
|
const GURL& url,
|
2013-06-01 14:33:40 +00:00
|
|
|
WebPreferences* prefs) {
|
2013-04-12 12:48:02 +00:00
|
|
|
prefs->javascript_enabled = true;
|
2014-03-04 13:23:18 +00:00
|
|
|
prefs->web_security_enabled = true;
|
2013-04-12 12:48:02 +00:00
|
|
|
prefs->javascript_can_open_windows_automatically = true;
|
|
|
|
prefs->plugins_enabled = false;
|
|
|
|
prefs->dom_paste_enabled = true;
|
|
|
|
prefs->java_enabled = false;
|
|
|
|
prefs->allow_scripts_to_close_windows = true;
|
|
|
|
prefs->javascript_can_access_clipboard = true;
|
|
|
|
prefs->local_storage_enabled = true;
|
|
|
|
prefs->databases_enabled = true;
|
|
|
|
prefs->application_cache_enabled = true;
|
|
|
|
prefs->allow_universal_access_from_file_urls = true;
|
|
|
|
prefs->allow_file_access_from_file_urls = true;
|
2014-05-06 08:43:58 +00:00
|
|
|
prefs->experimental_webgl_enabled = true;
|
2013-06-01 14:33:40 +00:00
|
|
|
prefs->allow_displaying_insecure_content = true;
|
2013-04-12 12:48:02 +00:00
|
|
|
prefs->allow_running_insecure_content = true;
|
2014-03-06 03:07:04 +00:00
|
|
|
|
2014-08-26 08:05:10 +00:00
|
|
|
// Turn off web security for devtools.
|
|
|
|
if (url.SchemeIs("chrome-devtools")) {
|
|
|
|
prefs->web_security_enabled = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-03-06 03:07:04 +00:00
|
|
|
NativeWindow* window = NativeWindow::FromRenderView(
|
|
|
|
render_view_host->GetProcess()->GetID(),
|
|
|
|
render_view_host->GetRoutingID());
|
|
|
|
if (window)
|
|
|
|
window->OverrideWebkitPrefs(url, prefs);
|
2013-04-12 12:48:02 +00:00
|
|
|
}
|
|
|
|
|
2014-06-28 14:33:00 +00:00
|
|
|
bool AtomBrowserClient::ShouldSwapBrowsingInstancesForNavigation(
|
2013-05-28 08:01:44 +00:00
|
|
|
content::SiteInstance* site_instance,
|
|
|
|
const GURL& current_url,
|
|
|
|
const GURL& new_url) {
|
2014-01-31 02:30:16 +00:00
|
|
|
if (site_instance->HasProcess())
|
|
|
|
dying_render_process_ = site_instance->GetProcess();
|
|
|
|
|
2014-04-29 07:35:12 +00:00
|
|
|
// Restart renderer process for all navigations, this relies on a patch to
|
|
|
|
// Chromium: http://git.io/_PaNyg.
|
2014-01-14 08:03:01 +00:00
|
|
|
return true;
|
2013-05-28 08:01:44 +00:00
|
|
|
}
|
|
|
|
|
2014-05-29 07:21:15 +00:00
|
|
|
std::string AtomBrowserClient::GetApplicationLocale() {
|
|
|
|
return l10n_util::GetApplicationLocale("");
|
|
|
|
}
|
|
|
|
|
2014-01-30 13:57:01 +00:00
|
|
|
void AtomBrowserClient::AppendExtraCommandLineSwitches(
|
2014-06-28 14:33:00 +00:00
|
|
|
base::CommandLine* command_line,
|
2014-01-30 13:57:01 +00:00
|
|
|
int child_process_id) {
|
|
|
|
WindowList* list = WindowList::GetInstance();
|
2014-01-31 02:30:16 +00:00
|
|
|
NativeWindow* window = NULL;
|
|
|
|
|
|
|
|
// Find the owner of this child process.
|
|
|
|
WindowList::const_iterator iter = std::find_if(
|
|
|
|
list->begin(), list->end(), FindByProcessId(child_process_id));
|
|
|
|
if (iter != list->end())
|
|
|
|
window = *iter;
|
|
|
|
|
|
|
|
// If the render process is a newly started one, which means the window still
|
|
|
|
// uses the old going-to-be-swapped render process, then we try to find the
|
|
|
|
// window from the swapped render process.
|
|
|
|
if (window == NULL && dying_render_process_ != NULL) {
|
|
|
|
child_process_id = dying_render_process_->GetID();
|
|
|
|
WindowList::const_iterator iter = std::find_if(
|
|
|
|
list->begin(), list->end(), FindByProcessId(child_process_id));
|
|
|
|
if (iter != list->end())
|
|
|
|
window = *iter;
|
2014-01-30 13:57:01 +00:00
|
|
|
}
|
2014-01-31 02:30:16 +00:00
|
|
|
|
|
|
|
if (window != NULL)
|
2014-03-06 02:40:10 +00:00
|
|
|
window->AppendExtraCommandLineSwitches(command_line, child_process_id);
|
2014-01-31 07:09:13 +00:00
|
|
|
|
|
|
|
dying_render_process_ = NULL;
|
2014-01-30 13:57:01 +00:00
|
|
|
}
|
|
|
|
|
2013-04-12 01:46:58 +00:00
|
|
|
brightray::BrowserMainParts* AtomBrowserClient::OverrideCreateBrowserMainParts(
|
|
|
|
const content::MainFunctionParams&) {
|
2014-06-30 06:16:16 +00:00
|
|
|
v8::V8::Initialize(); // Init V8 before creating main parts.
|
2013-04-12 01:46:58 +00:00
|
|
|
return new AtomBrowserMainParts;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace atom
|