Mac: Fix DelegatedFrameHost not getting vsync parameters.
[chromium-blink-merge.git] / extensions / renderer / user_script_set_manager.cc
blob5a317a14d61f59ef8461bfa7f37f6f42d76c4bf0
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 #include "extensions/renderer/user_script_set_manager.h"
7 #include "components/crx_file/id_util.h"
8 #include "content/public/renderer/render_thread.h"
9 #include "extensions/common/extension_messages.h"
10 #include "extensions/renderer/dispatcher.h"
11 #include "extensions/renderer/script_injection.h"
12 #include "extensions/renderer/user_script_set.h"
13 #include "ipc/ipc_message.h"
14 #include "ipc/ipc_message_macros.h"
15 #include "third_party/WebKit/public/web/WebFrame.h"
17 namespace extensions {
19 UserScriptSetManager::UserScriptSetManager(const ExtensionSet* extensions)
20 : static_scripts_(extensions),
21 extensions_(extensions) {
22 content::RenderThread::Get()->AddObserver(this);
25 UserScriptSetManager::~UserScriptSetManager() {
28 void UserScriptSetManager::AddObserver(Observer* observer) {
29 observers_.AddObserver(observer);
32 void UserScriptSetManager::RemoveObserver(Observer* observer) {
33 observers_.RemoveObserver(observer);
36 scoped_ptr<ScriptInjection>
37 UserScriptSetManager::GetInjectionForDeclarativeScript(
38 int script_id,
39 blink::WebFrame* web_frame,
40 int tab_id,
41 const GURL& url,
42 const std::string& extension_id) {
43 UserScriptSet* user_script_set =
44 GetProgrammaticScriptsByHostID(HostID(HostID::EXTENSIONS, extension_id));
45 if (!user_script_set)
46 return scoped_ptr<ScriptInjection>();
48 return user_script_set->GetDeclarativeScriptInjection(
49 script_id,
50 web_frame,
51 tab_id,
52 UserScript::BROWSER_DRIVEN,
53 url);
56 bool UserScriptSetManager::OnControlMessageReceived(
57 const IPC::Message& message) {
58 bool handled = true;
59 IPC_BEGIN_MESSAGE_MAP(UserScriptSetManager, message)
60 IPC_MESSAGE_HANDLER(ExtensionMsg_UpdateUserScripts, OnUpdateUserScripts)
61 IPC_MESSAGE_UNHANDLED(handled = false)
62 IPC_END_MESSAGE_MAP()
63 return handled;
66 void UserScriptSetManager::GetAllInjections(
67 ScopedVector<ScriptInjection>* injections,
68 blink::WebFrame* web_frame,
69 int tab_id,
70 UserScript::RunLocation run_location) {
71 static_scripts_.GetInjections(injections, web_frame, tab_id, run_location);
72 for (UserScriptSetMap::iterator it = programmatic_scripts_.begin();
73 it != programmatic_scripts_.end();
74 ++it) {
75 it->second->GetInjections(injections, web_frame, tab_id, run_location);
79 void UserScriptSetManager::GetAllActiveExtensionIds(
80 std::set<std::string>* ids) const {
81 DCHECK(ids);
82 static_scripts_.GetActiveExtensionIds(ids);
83 for (UserScriptSetMap::const_iterator it = programmatic_scripts_.begin();
84 it != programmatic_scripts_.end();
85 ++it) {
86 it->second->GetActiveExtensionIds(ids);
90 UserScriptSet* UserScriptSetManager::GetProgrammaticScriptsByHostID(
91 const HostID& host_id) {
92 UserScriptSetMap::const_iterator it = programmatic_scripts_.find(host_id);
93 return it != programmatic_scripts_.end() ? it->second.get() : NULL;
96 void UserScriptSetManager::OnUpdateUserScripts(
97 base::SharedMemoryHandle shared_memory,
98 const HostID& host_id,
99 const std::set<HostID>& changed_hosts) {
100 if (!base::SharedMemory::IsHandleValid(shared_memory)) {
101 NOTREACHED() << "Bad scripts handle";
102 return;
105 for (const HostID& host_id : changed_hosts) {
106 if (host_id.type() == HostID::EXTENSIONS &&
107 !crx_file::id_util::IdIsValid(host_id.id())) {
108 NOTREACHED() << "Invalid extension id: " << host_id.id();
109 return;
113 UserScriptSet* scripts = NULL;
114 if (!host_id.id().empty()) {
115 // The expectation when there is a host that "owns" this shared
116 // memory region is that the |changed_hosts| is either the empty list
117 // or just the owner.
118 CHECK(changed_hosts.size() <= 1);
119 if (programmatic_scripts_.find(host_id) == programmatic_scripts_.end()) {
120 scripts = new UserScriptSet(extensions_);
121 programmatic_scripts_[host_id] = make_linked_ptr(scripts);
122 } else {
123 scripts = programmatic_scripts_[host_id].get();
125 } else {
126 scripts = &static_scripts_;
128 DCHECK(scripts);
130 // If no hosts are included in the set, that indicates that all
131 // hosts were updated. Add them all to the set so that observers and
132 // individual UserScriptSets don't need to know this detail.
133 const std::set<HostID>* effective_hosts = &changed_hosts;
134 std::set<HostID> all_hosts;
135 if (changed_hosts.empty()) {
136 // The meaning of "all hosts(extensions)" varies, depending on whether some
137 // host "owns" this shared memory region.
138 // No owner => all known hosts.
139 // Owner => just the owner host.
140 if (host_id.id().empty()) {
141 std::set<std::string> extension_ids = extensions_->GetIDs();
142 for (const std::string& extension_id : extension_ids)
143 all_hosts.insert(HostID(HostID::EXTENSIONS, extension_id));
144 } else {
145 all_hosts.insert(host_id);
147 effective_hosts = &all_hosts;
150 if (scripts->UpdateUserScripts(shared_memory, *effective_hosts)) {
151 FOR_EACH_OBSERVER(
152 Observer,
153 observers_,
154 OnUserScriptsUpdated(*effective_hosts, scripts->scripts()));
158 } // namespace extensions