forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent_script_tracker.cc
584 lines (505 loc) · 23.3 KB
/
content_script_tracker.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "extensions/browser/content_script_tracker.h"
#include <algorithm>
#include <map>
#include "base/containers/contains.h"
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "base/ranges/algorithm.h"
#include "base/trace_event/typed_macros.h"
#include "components/guest_view/browser/guest_view_base.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/global_routing_id.h"
#include "content/public/browser/navigation_handle.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/web_contents.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/browser/extension_system.h"
#include "extensions/browser/guest_view/web_view/web_view_content_script_manager.h"
#include "extensions/browser/url_loader_factory_manager.h"
#include "extensions/browser/user_script_manager.h"
#include "extensions/common/constants.h"
#include "extensions/common/content_script_injection_url_getter.h"
#include "extensions/common/extension.h"
#include "extensions/common/manifest_handlers/content_scripts_handler.h"
#include "extensions/common/permissions/permissions_data.h"
#include "extensions/common/trace_util.h"
#include "extensions/common/user_script.h"
using perfetto::protos::pbzero::ChromeTrackEvent;
namespace extensions {
namespace {
// Helper for lazily attaching ExtensionIdSet to a RenderProcessHost. Used to
// track the set of extensions which have injected a JS content script into a
// RenderProcessHost.
//
// We track content script injection per-RenderProcessHost:
// 1. This matches the real security boundary that Site Isolation uses (the
// boundary of OS processes) and follows the precedent of
// content::ChildProcessSecurityPolicy.
// 2. This robustly handles initial empty documents (see the *InitialEmptyDoc*
// tests in //content_script_tracker_browsertest.cc) and isn't impacted
// by ReadyToCommit races associated with DocumentUserData.
// For more information see:
// https://docs.google.com/document/d/1MFprp2ss2r9RNamJ7Jxva1bvRZvec3rzGceDGoJ6vW0/edit#
class RenderProcessHostUserData : public base::SupportsUserData::Data {
public:
static const RenderProcessHostUserData* Get(
const content::RenderProcessHost& process) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
return static_cast<RenderProcessHostUserData*>(
process.GetUserData(kUserDataKey));
}
static RenderProcessHostUserData& GetOrCreate(
content::RenderProcessHost& process) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
auto* self = static_cast<RenderProcessHostUserData*>(
process.GetUserData(kUserDataKey));
if (!self) {
// Create a new RenderProcessHostUserData if needed. The ownership is
// passed to the `process` (i.e. the new RenderProcessHostUserData will be
// destroyed at the same time as the `process` - this is why we don't need
// to purge or destroy the set from within ContentScriptTracker).
auto owned_self =
base::WrapUnique(new RenderProcessHostUserData(process));
self = owned_self.get();
process.SetUserData(kUserDataKey, std::move(owned_self));
}
DCHECK(self);
return *self;
}
// base::SupportsUserData::Data override:
~RenderProcessHostUserData() override {
TRACE_EVENT_END("extensions", perfetto::Track::FromPointer(this),
ChromeTrackEvent::kRenderProcessHost, process_);
}
bool HasContentScript(const ExtensionId& extension_id) const {
return base::Contains(content_scripts_, extension_id);
}
void AddContentScript(const ExtensionId& extension_id) {
TRACE_EVENT_INSTANT(
"extensions",
"ContentScriptTracker::RenderProcessHostUserData::AddContentScript",
ChromeTrackEvent::kRenderProcessHost, process_,
ChromeTrackEvent::kChromeExtensionId,
ExtensionIdForTracing(extension_id));
content_scripts_.insert(extension_id);
}
void AddFrame(content::RenderFrameHost* frame) { frames_.insert(frame); }
void RemoveFrame(content::RenderFrameHost* frame) { frames_.erase(frame); }
const std::set<content::RenderFrameHost*>& frames() const { return frames_; }
private:
explicit RenderProcessHostUserData(content::RenderProcessHost& process)
: process_(process) {
TRACE_EVENT_BEGIN("extensions",
"ContentScriptTracker::RenderProcessHostUserData",
perfetto::Track::FromPointer(this),
ChromeTrackEvent::kRenderProcessHost, process_);
}
static const char* kUserDataKey;
// Set of extensions ids that have *ever* injected a content script into this
// particular renderer process. This is the core data maintained by the
// ContentScriptTracker.
ExtensionIdSet content_scripts_;
// Set of frames that are *currently* hosted in this particular renderer
// process. This is mostly used just to get GetLastCommittedURL of these
// frames so that when a new extension is loaded, then ContentScriptTracker
// can know where content scripts may be injected.
std::set<content::RenderFrameHost*> frames_;
// Only used for tracing.
content::RenderProcessHost& process_;
};
const char* RenderProcessHostUserData::kUserDataKey =
"ContentScriptTracker's data";
class RenderFrameHostAdapter
: public ContentScriptInjectionUrlGetter::FrameAdapter {
public:
explicit RenderFrameHostAdapter(content::RenderFrameHost* frame)
: frame_(frame) {}
~RenderFrameHostAdapter() override = default;
std::unique_ptr<FrameAdapter> Clone() const override {
return std::make_unique<RenderFrameHostAdapter>(frame_);
}
std::unique_ptr<FrameAdapter> GetLocalParentOrOpener() const override {
content::RenderFrameHost* parent_or_opener = frame_->GetParent();
if (!parent_or_opener) {
parent_or_opener =
content::WebContents::FromRenderFrameHost(frame_)->GetOpener();
}
if (!parent_or_opener)
return nullptr;
// Renderer-side WebLocalFrameAdapter only considers local frames.
// Comparing processes is robust way to replicate such renderer-side checks,
// because out caller (DoesContentScriptMatch) accepts false positives.
// This comparison might be less accurate (e.g. give more false positives)
// than SiteInstance comparison, but comparing processes should be robust
// and stable as SiteInstanceGroup refactoring proceeds.
if (parent_or_opener->GetProcess() != frame_->GetProcess())
return nullptr;
return std::make_unique<RenderFrameHostAdapter>(parent_or_opener);
}
GURL GetUrl() const override { return frame_->GetLastCommittedURL(); }
url::Origin GetOrigin() const override {
return frame_->GetLastCommittedOrigin();
}
bool CanAccess(const url::Origin& target) const override {
// CanAccess should not be called - see the comment for
// kAllowInaccessibleParents in GetEffectiveDocumentURL below.
NOTREACHED();
return true;
}
bool CanAccess(const FrameAdapter& target) const override {
// CanAccess should not be called - see the comment for
// kAllowInaccessibleParents in GetEffectiveDocumentURL below.
NOTREACHED();
return true;
}
uintptr_t GetId() const override { return frame_->GetRoutingID(); }
private:
content::RenderFrameHost* const frame_;
};
// This function approximates ScriptContext::GetEffectiveDocumentURLForInjection
// from the renderer side.
GURL GetEffectiveDocumentURL(
content::RenderFrameHost* frame,
const GURL& document_url,
MatchOriginAsFallbackBehavior match_origin_as_fallback) {
// This is a simplification to avoid calling
// `RenderFrameHostAdapter::CanAccess` which is unable to replicate all of
// WebSecurityOrigin::CanAccess checks (e.g. universal access or file
// exceptions tracked on the renderer side). This is okay, because our only
// caller (DoesContentScriptMatch()) expects false positives.
constexpr bool kAllowInaccessibleParents = true;
return ContentScriptInjectionUrlGetter::Get(
RenderFrameHostAdapter(frame), document_url, match_origin_as_fallback,
kAllowInaccessibleParents);
}
// If `user_script` will inject JavaScript content script into the target of
// `navigation`, then DoesContentScriptMatch returns true. Otherwise it may
// return either true or false. Note that this function ignores CSS content
// scripts.
//
// This function approximates a subset of checks from
// UserScriptSet::GetInjectionForScript (which runs in the renderer process).
// Unlike the renderer version, the code below doesn't consider ability to
// create an injection host, nor the results of
// ScriptInjector::CanExecuteOnFrame, nor the path of `url_patterns`.
// Additionally the `effective_url` calculations are also only an approximation.
// This is okay, because the top-level doc comment for ContentScriptTracker
// documents that false positives are expected and why they are okay.
bool DoesContentScriptMatch(const UserScript& user_script,
content::RenderFrameHost* frame,
const GURL& url) {
content::RenderProcessHost& process = *frame->GetProcess();
const ExtensionId& extension_id = user_script.extension_id();
// ContentScriptTracker only needs to track Javascript content scripts (e.g.
// doesn't track CSS-only injections).
if (user_script.js_scripts().empty()) {
TRACE_EVENT_INSTANT(
"extensions",
"ContentScriptTracker/DoesContentScriptMatch=false(non-js)",
ChromeTrackEvent::kRenderProcessHost, process,
ChromeTrackEvent::kChromeExtensionId,
ExtensionIdForTracing(extension_id));
return false;
}
GURL effective_url = GetEffectiveDocumentURL(
frame, url, user_script.match_origin_as_fallback());
if (user_script.url_patterns().MatchesSecurityOrigin(effective_url)) {
TRACE_EVENT_INSTANT("extensions",
"ContentScriptTracker/DoesContentScriptMatch=true",
ChromeTrackEvent::kRenderProcessHost, process,
ChromeTrackEvent::kChromeExtensionId,
ExtensionIdForTracing(extension_id));
return true;
} else {
TRACE_EVENT_INSTANT(
"extensions",
"ContentScriptTracker/DoesContentScriptMatch=false(mismatch)",
ChromeTrackEvent::kRenderProcessHost, process,
ChromeTrackEvent::kChromeExtensionId,
ExtensionIdForTracing(extension_id));
return false;
}
}
void HandleProgrammaticContentScriptInjection(
base::PassKey<ContentScriptTracker> pass_key,
content::RenderFrameHost* frame,
const Extension& extension) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
// Store `extension.id()` in `process_data`. ContentScriptTracker never
// removes entries from this set - once a renderer process gains an ability to
// talk on behalf of a content script, it retains this ability forever. Note
// that the `process_data` will be destroyed together with the
// RenderProcessHost (see also a comment inside
// RenderProcessHostUserData::GetOrCreate).
auto& process_data =
RenderProcessHostUserData::GetOrCreate(*frame->GetProcess());
process_data.AddContentScript(extension.id());
URLLoaderFactoryManager::WillProgrammaticallyInjectContentScript(
pass_key, frame, extension);
}
bool DoContentScriptsMatch(const UserScriptList& content_script_list,
content::RenderFrameHost* frame,
const GURL& url) {
return base::ranges::any_of(
content_script_list.begin(), content_script_list.end(),
[frame, &url](const std::unique_ptr<UserScript>& script) {
return DoesContentScriptMatch(*script, frame, url);
});
}
// If `extension`'s manifest declares that it may inject JavaScript content
// script into the `frame` / `url`, then DoContentScriptsMatch returns true.
// Otherwise it may return either true or false.
//
// Note that the `url` might be either 1) the last committed URL of `frame` or
// 2) the target of a ReadyToCommit navigation in `frame`.
//
// Note that this method ignores CSS content scripts.
bool DoContentScriptsMatch(const Extension& extension,
content::RenderFrameHost* frame,
const GURL& url) {
TRACE_EVENT("extensions", "ContentScriptTracker/DoContentScriptsMatch",
ChromeTrackEvent::kRenderProcessHost, *frame->GetProcess(),
ChromeTrackEvent::kChromeExtensionId,
ExtensionIdForTracing(extension.id()));
content::RenderProcessHost& process = *frame->GetProcess();
auto* guest = guest_view::GuestViewBase::FromWebContents(
content::WebContents::FromRenderFrameHost(frame));
if (guest) {
// Return true if `extension` is an owner of `guest` and it registered
// content scripts using the `webview.addContentScripts` API.
GURL owner_site_url = guest->GetOwnerSiteURL();
if (owner_site_url.SchemeIs(kExtensionScheme) &&
owner_site_url.host_piece() == extension.id()) {
WebViewContentScriptManager* script_manager =
WebViewContentScriptManager::Get(frame->GetBrowserContext());
int embedder_process_id =
guest->owner_web_contents()->GetMainFrame()->GetProcess()->GetID();
std::set<std::string> script_ids = script_manager->GetContentScriptIDSet(
embedder_process_id, guest->view_instance_id());
// Note - more granular checks (e.g. against URL patterns) are desirable
// for performance (to avoid creating unnecessary URLLoaderFactory via
// URLLoaderFactoryManager), but not necessarily for security (because
// there are anyway no OOPIFs inside the webView process -
// https://crbug.com/614463). At the same time, more granular checks are
// difficult to achieve, because the UserScript objects are not retained
// (i.e. only UserScriptIDs are available) by WebViewContentScriptManager.
if (!script_ids.empty()) {
TRACE_EVENT_INSTANT(
"extensions",
"ContentScriptTracker/DoesContentScriptMatch=true(guest)",
ChromeTrackEvent::kRenderProcessHost, process,
ChromeTrackEvent::kChromeExtensionId,
ExtensionIdForTracing(extension.id()));
return true;
}
}
}
if (!guest || PermissionsData::CanExecuteScriptEverywhere(
extension.id(), extension.location())) {
// Return true if manifest-declared content scripts match.
const UserScriptList& manifest_scripts =
ContentScriptsInfo::GetContentScripts(&extension);
if (DoContentScriptsMatch(manifest_scripts, frame, url)) {
TRACE_EVENT_INSTANT(
"extensions",
"ContentScriptTracker/DoesContentScriptMatch=true(manifest)",
ChromeTrackEvent::kRenderProcessHost, process,
ChromeTrackEvent::kChromeExtensionId,
ExtensionIdForTracing(extension.id()));
return true;
}
// Return true if dynamic content scripts match. Note that `manager` can be
// null for some unit tests which do not initialize the ExtensionSystem.
UserScriptManager* manager =
ExtensionSystem::Get(frame->GetProcess()->GetBrowserContext())
->user_script_manager();
if (manager) {
const UserScriptList& dynamic_scripts =
manager->GetUserScriptLoaderForExtension(extension.id())
->GetLoadedDynamicScripts();
if (DoContentScriptsMatch(dynamic_scripts, frame, url)) {
TRACE_EVENT_INSTANT(
"extensions",
"ContentScriptTracker/DoesContentScriptMatch=true(dynamic)",
ChromeTrackEvent::kRenderProcessHost, process,
ChromeTrackEvent::kChromeExtensionId,
ExtensionIdForTracing(extension.id()));
return true;
}
}
}
// Otherwise, no content script from `extension` can run in `frame` at `url`.
TRACE_EVENT_INSTANT("extensions",
"ContentScriptTracker/DoesContentScriptMatch=false",
ChromeTrackEvent::kRenderProcessHost, process,
ChromeTrackEvent::kChromeExtensionId,
ExtensionIdForTracing(extension.id()));
return false;
}
std::vector<const Extension*> GetExtensionsInjectingContentScripts(
content::NavigationHandle* navigation) {
content::RenderFrameHost* frame = navigation->GetRenderFrameHost();
const GURL& url = navigation->GetURL();
std::vector<const Extension*> extensions_injecting_content_scripts;
const ExtensionRegistry* registry =
ExtensionRegistry::Get(frame->GetProcess()->GetBrowserContext());
DCHECK(registry); // This method shouldn't be called during shutdown.
for (const auto& it : registry->enabled_extensions()) {
const Extension& extension = *it;
if (!DoContentScriptsMatch(extension, frame, url))
continue;
extensions_injecting_content_scripts.push_back(&extension);
}
return extensions_injecting_content_scripts;
}
const Extension* FindExtensionByHostId(content::BrowserContext* browser_context,
const mojom::HostID& host_id) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
switch (host_id.type) {
case mojom::HostID::HostType::kWebUi:
// ContentScriptTracker only tracks extensions.
return nullptr;
case mojom::HostID::HostType::kExtensions:
break;
}
const ExtensionRegistry* registry = ExtensionRegistry::Get(browser_context);
DCHECK(registry); // WillExecuteCode and WillUpdateContentScriptsInRenderer
// shouldn't happen during shutdown.
const Extension* extension =
registry->enabled_extensions().GetByID(host_id.id);
return extension;
}
} // namespace
// static
bool ContentScriptTracker::DidProcessRunContentScriptFromExtension(
const content::RenderProcessHost& process,
const ExtensionId& extension_id) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
DCHECK(!extension_id.empty());
// Check if we've been notified about the content script injection via
// ReadyToCommitNavigation or WillExecuteCode methods.
const auto* process_data = RenderProcessHostUserData::Get(process);
if (!process_data)
return false;
return process_data->HasContentScript(extension_id);
}
// static
void ContentScriptTracker::ReadyToCommitNavigation(
base::PassKey<ExtensionWebContentsObserver> pass_key,
content::NavigationHandle* navigation) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
content::RenderProcessHost* process =
navigation->GetRenderFrameHost()->GetProcess();
TRACE_EVENT("extensions", "ContentScriptTracker::ReadyToCommitNavigation",
ChromeTrackEvent::kRenderProcessHost, *process);
// Store `extensions_injecting_content_scripts` in
// `process_data`. ContentScriptTracker never removes entries
// from this set - once a renderer process gains an ability to talk on behalf
// of a content script, it retains this ability forever. Note that the
// `process_data`
// will be destroyed together with the RenderProcessHost (see also a comment
// inside RenderProcessHostUserData::GetOrCreate).
std::vector<const Extension*> extensions_injecting_content_scripts =
GetExtensionsInjectingContentScripts(navigation);
auto& process_data = RenderProcessHostUserData::GetOrCreate(*process);
for (const Extension* extension : extensions_injecting_content_scripts)
process_data.AddContentScript(extension->id());
URLLoaderFactoryManager::WillInjectContentScriptsWhenNavigationCommits(
base::PassKey<ContentScriptTracker>(), navigation,
extensions_injecting_content_scripts);
}
// static
void ContentScriptTracker::RenderFrameCreated(
base::PassKey<ExtensionWebContentsObserver> pass_key,
content::RenderFrameHost* frame) {
TRACE_EVENT("extensions", "ContentScriptTracker::RenderFrameCreated",
ChromeTrackEvent::kRenderProcessHost, *frame->GetProcess());
auto& process_data =
RenderProcessHostUserData::GetOrCreate(*frame->GetProcess());
process_data.AddFrame(frame);
}
// static
void ContentScriptTracker::RenderFrameDeleted(
base::PassKey<ExtensionWebContentsObserver> pass_key,
content::RenderFrameHost* frame) {
TRACE_EVENT("extensions", "ContentScriptTracker::RenderFrameDeleted",
ChromeTrackEvent::kRenderProcessHost, *frame->GetProcess());
auto& process_data =
RenderProcessHostUserData::GetOrCreate(*frame->GetProcess());
process_data.RemoveFrame(frame);
}
// static
void ContentScriptTracker::WillExecuteCode(
base::PassKey<ScriptExecutor> pass_key,
content::RenderFrameHost* frame,
const mojom::HostID& host_id) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
content::RenderProcessHost& process = *frame->GetProcess();
TRACE_EVENT("extensions", "ContentScriptTracker::WillExecuteCode/1",
ChromeTrackEvent::kRenderProcessHost, process,
ChromeTrackEvent::kChromeExtensionId,
ExtensionIdForTracing(host_id.id));
const Extension* extension =
FindExtensionByHostId(process.GetBrowserContext(), host_id);
if (!extension)
return;
HandleProgrammaticContentScriptInjection(PassKey(), frame, *extension);
}
// static
void ContentScriptTracker::WillExecuteCode(
base::PassKey<RequestContentScript> pass_key,
content::RenderFrameHost* frame,
const Extension& extension) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
TRACE_EVENT("extensions", "ContentScriptTracker::WillExecuteCode/2",
ChromeTrackEvent::kRenderProcessHost, *frame->GetProcess(),
ChromeTrackEvent::kChromeExtensionId,
ExtensionIdForTracing(extension.id()));
HandleProgrammaticContentScriptInjection(PassKey(), frame, extension);
}
// static
void ContentScriptTracker::WillUpdateContentScriptsInRenderer(
base::PassKey<UserScriptLoader> pass_key,
const mojom::HostID& host_id,
content::RenderProcessHost& process) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
TRACE_EVENT(
"extensions", "ContentScriptTracker::WillUpdateContentScriptsInRenderer",
ChromeTrackEvent::kRenderProcessHost, process,
ChromeTrackEvent::kChromeExtensionId, ExtensionIdForTracing(host_id.id));
const Extension* extension =
FindExtensionByHostId(process.GetBrowserContext(), host_id);
if (!extension)
return;
auto& process_data = RenderProcessHostUserData::GetOrCreate(process);
const std::set<content::RenderFrameHost*>& frames_in_process =
process_data.frames();
bool any_frame_matches_content_scripts =
std::any_of(frames_in_process.begin(), frames_in_process.end(),
[extension](content::RenderFrameHost* frame) {
return DoContentScriptsMatch(*extension, frame,
frame->GetLastCommittedURL());
});
if (any_frame_matches_content_scripts) {
process_data.AddContentScript(extension->id());
} else {
TRACE_EVENT_INSTANT(
"extensions",
"ContentScriptTracker::WillUpdateContentScriptsInRenderer - no matches",
ChromeTrackEvent::kRenderProcessHost, process,
ChromeTrackEvent::kChromeExtensionId,
ExtensionIdForTracing(host_id.id));
}
}
// static
bool ContentScriptTracker::DoContentScriptsMatchForTesting(
const Extension& extension,
content::RenderFrameHost* frame,
const GURL& url) {
return DoContentScriptsMatch(extension, frame, url);
}
} // namespace extensions