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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/activity_log/activity_log.h"
#include <stddef.h>
#include <array>
#include <memory>
#include "base/command_line.h"
#include "base/functional/bind.h"
#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "base/synchronization/waitable_event.h"
#include "base/task/single_thread_task_runner.h"
#include "build/build_config.h"
#include "chrome/browser/extensions/activity_log/activity_action_constants.h"
#include "chrome/browser/extensions/activity_log/activity_log_task_runner.h"
#include "chrome/browser/extensions/test_extension_system.h"
#include "chrome/browser/preloading/prefetch/no_state_prefetch/no_state_prefetch_manager_factory.h"
#include "chrome/common/chrome_constants.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/test/base/chrome_render_view_host_test_harness.h"
#include "chrome/test/base/testing_profile.h"
#include "components/no_state_prefetch/browser/no_state_prefetch_handle.h"
#include "components/no_state_prefetch/browser/no_state_prefetch_manager.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/browser_task_environment.h"
#include "content/public/test/mock_render_process_host.h"
#include "extensions/browser/disable_reason.h"
#include "extensions/browser/extension_registrar.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/browser/renderer_startup_helper.h"
#include "extensions/browser/uninstall_reason.h"
#include "extensions/common/dom_action_types.h"
#include "extensions/common/extension_builder.h"
#include "extensions/common/mojom/host_id.mojom.h"
#include "extensions/common/mojom/renderer.mojom.h"
#include "mojo/public/cpp/bindings/associated_receiver_set.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
const char kExtensionId[] = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
constexpr auto kUrlApiCalls = std::to_array<const char*>({
"HTMLButtonElement.formAction", "HTMLEmbedElement.src",
"HTMLFormElement.action", "HTMLFrameElement.src",
"HTMLHtmlElement.manifest", "HTMLIFrameElement.src",
"HTMLImageElement.longDesc", "HTMLImageElement.src",
"HTMLImageElement.lowsrc", "HTMLInputElement.formAction",
"HTMLInputElement.src", "HTMLLinkElement.href",
"HTMLMediaElement.src", "HTMLMediaElement.currentSrc",
"HTMLModElement.cite", "HTMLObjectElement.data",
"HTMLQuoteElement.cite", "HTMLScriptElement.src",
"HTMLSourceElement.src", "HTMLTrackElement.src",
"HTMLVideoElement.poster",
});
} // namespace
namespace extensions {
// Class that implements the binding of a new Renderer mojom interface and
// can receive callbacks on it for testing validation.
class InterceptingRendererStartupHelper : public RendererStartupHelper,
public mojom::Renderer {
public:
explicit InterceptingRendererStartupHelper(
content::BrowserContext* browser_context)
: RendererStartupHelper(browser_context) {}
protected:
mojo::PendingAssociatedRemote<mojom::Renderer> BindNewRendererRemote(
content::RenderProcessHost* process) override {
mojo::AssociatedRemote<mojom::Renderer> remote;
receivers_.Add(this, remote.BindNewEndpointAndPassDedicatedReceiver());
return remote.Unbind();
}
private:
// mojom::Renderer implementation:
void ActivateExtension(const std::string& extension_id) override {}
void SetActivityLoggingEnabled(bool enabled) override {}
void LoadExtensions(
std::vector<mojom::ExtensionLoadedParamsPtr> loaded_extensions) override {
}
void UnloadExtension(const std::string& extension_id) override {}
void SuspendExtension(
const std::string& extension_id,
mojom::Renderer::SuspendExtensionCallback callback) override {
std::move(callback).Run();
}
void CancelSuspendExtension(const std::string& extension_id) override {}
void SetDeveloperMode(bool current_developer_mode) override {}
void SetUserScriptsAllowed(const std::string& extension_id,
bool allowed) override {}
void SetSessionInfo(version_info::Channel channel,
mojom::FeatureSessionType session) override {}
void SetSystemFont(const std::string& font_family,
const std::string& font_size) override {}
void SetWebViewPartitionID(const std::string& partition_id) override {}
void SetScriptingAllowlist(
const std::vector<std::string>& extension_ids) override {}
void UpdateUserScriptWorlds(
std::vector<mojom::UserScriptWorldInfoPtr> info) override {}
void ClearUserScriptWorldConfig(
const std::string& extension_id,
const std::optional<std::string>& world_id) override {}
void ShouldSuspend(ShouldSuspendCallback callback) override {
std::move(callback).Run();
}
void TransferBlobs(TransferBlobsCallback callback) override {
std::move(callback).Run();
}
void UpdatePermissions(const std::string& extension_id,
PermissionSet active_permissions,
PermissionSet withheld_permissions,
URLPatternSet policy_blocked_hosts,
URLPatternSet policy_allowed_hosts,
bool uses_default_policy_host_restrictions) override {}
void UpdateDefaultPolicyHostRestrictions(
URLPatternSet default_policy_blocked_hosts,
URLPatternSet default_policy_allowed_hosts) override {}
void UpdateUserHostRestrictions(URLPatternSet user_blocked_hosts,
URLPatternSet user_allowed_hosts) override {}
void UpdateTabSpecificPermissions(const std::string& extension_id,
URLPatternSet new_hosts,
int tab_id,
bool update_origin_allowlist) override {}
void UpdateUserScripts(base::ReadOnlySharedMemoryRegion shared_memory,
mojom::HostIDPtr host_id) override {}
void ClearTabSpecificPermissions(
const std::vector<std::string>& extension_ids,
int tab_id,
bool update_origin_allowlist) override {}
void WatchPages(const std::vector<std::string>& css_selectors) override {}
mojo::AssociatedReceiverSet<mojom::Renderer> receivers_;
};
class ActivityLogTest : public ChromeRenderViewHostTestHarness {
protected:
virtual bool enable_activity_logging_switch() const { return true; }
void SetUp() override {
ChromeRenderViewHostTestHarness::SetUp();
SetActivityLogTaskRunnerForTesting(
base::SingleThreadTaskRunner::GetCurrentDefault().get());
base::CommandLine command_line(base::CommandLine::NO_PROGRAM);
if (enable_activity_logging_switch()) {
base::CommandLine::ForCurrentProcess()->AppendSwitch(
switches::kEnableExtensionActivityLogging);
}
base::CommandLine::ForCurrentProcess()->AppendSwitch(
switches::kEnableExtensionActivityLogTesting);
static_cast<TestExtensionSystem*>(ExtensionSystem::Get(profile()))
->CreateExtensionService(&command_line, base::FilePath(), false);
RendererStartupHelperFactory::GetForBrowserContext(profile())
->OnRenderProcessHostCreated(
static_cast<content::RenderProcessHost*>(process()));
base::RunLoop().RunUntilIdle();
}
static std::unique_ptr<KeyedService> BuildFakeRendererStartupHelper(
content::BrowserContext* context) {
return std::make_unique<InterceptingRendererStartupHelper>(context);
}
TestingProfile::TestingFactories GetTestingFactories() const override {
return {TestingProfile::TestingFactory{
RendererStartupHelperFactory::GetInstance(),
base::BindRepeating(&BuildFakeRendererStartupHelper)}};
}
void TearDown() override {
base::RunLoop().RunUntilIdle();
ChromeRenderViewHostTestHarness::TearDown();
SetActivityLogTaskRunnerForTesting(nullptr);
}
static void RetrieveActions_LogAndFetchActions0(
std::unique_ptr<std::vector<scoped_refptr<Action>>> i) {
ASSERT_EQ(0, static_cast<int>(i->size()));
}
static void RetrieveActions_LogAndFetchActions1(
std::unique_ptr<std::vector<scoped_refptr<Action>>> i) {
ASSERT_EQ(1, static_cast<int>(i->size()));
}
static void RetrieveActions_LogAndFetchActions2(
std::unique_ptr<std::vector<scoped_refptr<Action>>> i) {
ASSERT_EQ(2, static_cast<int>(i->size()));
}
void SetPolicy(bool log_arguments) {
ActivityLog* activity_log = ActivityLog::GetInstance(profile());
if (log_arguments)
activity_log->SetDatabasePolicy(ActivityLogPolicy::POLICY_FULLSTREAM);
else
activity_log->SetDatabasePolicy(ActivityLogPolicy::POLICY_COUNTS);
}
bool GetDatabaseEnabled() {
ActivityLog* activity_log = ActivityLog::GetInstance(profile());
return activity_log->IsDatabaseEnabled();
}
bool GetWatchdogActive() {
ActivityLog* activity_log = ActivityLog::GetInstance(profile());
return activity_log->IsWatchdogAppActive();
}
static void Arguments_Prerender(
std::unique_ptr<std::vector<scoped_refptr<Action>>> i) {
ASSERT_EQ(1U, i->size());
scoped_refptr<Action> last = i->front();
ASSERT_EQ("odlameecjipmbmbejkplpemijjgpljce", last->extension_id());
ASSERT_EQ(Action::ACTION_CONTENT_SCRIPT, last->action_type());
ASSERT_EQ("[\"script\"]",
ActivityLogPolicy::Util::Serialize(last->args()));
ASSERT_EQ("http://www.google.com/", last->SerializePageUrl());
ASSERT_EQ("{\"prerender\":true}",
ActivityLogPolicy::Util::Serialize(last->other()));
ASSERT_EQ("", last->api_name());
ASSERT_EQ("", last->page_title());
ASSERT_EQ("", last->SerializeArgUrl());
}
static void RetrieveActions_ArgUrlExtraction(
std::unique_ptr<std::vector<scoped_refptr<Action>>> i) {
ASSERT_EQ(4U, i->size());
scoped_refptr<Action> action = i->at(0);
ASSERT_EQ("XMLHttpRequest.open", action->api_name());
ASSERT_EQ("[\"POST\",\"\\u003Carg_url>\"]",
ActivityLogPolicy::Util::Serialize(action->args()));
ASSERT_EQ("http://api.google.com/", action->arg_url().spec());
// Test that the dom_verb field was changed to XHR (from METHOD). This
// could be tested on all retrieved XHR actions but it would be redundant,
// so just test once.
ASSERT_TRUE(action->other());
const base::Value::Dict& other = *action->other();
std::optional<int> dom_verb =
other.FindInt(activity_log_constants::kActionDomVerb);
ASSERT_EQ(DomActionType::XHR, dom_verb);
action = i->at(1);
ASSERT_EQ("XMLHttpRequest.open", action->api_name());
ASSERT_EQ("[\"POST\",\"\\u003Carg_url>\"]",
ActivityLogPolicy::Util::Serialize(action->args()));
ASSERT_EQ("http://www.google.com/api/", action->arg_url().spec());
action = i->at(2);
ASSERT_EQ("XMLHttpRequest.open", action->api_name());
ASSERT_EQ("[\"POST\",\"/api/\"]",
ActivityLogPolicy::Util::Serialize(action->args()));
ASSERT_FALSE(action->arg_url().is_valid());
action = i->at(3);
ASSERT_EQ("windows.create", action->api_name());
ASSERT_EQ("[{\"url\":\"\\u003Carg_url>\"}]",
ActivityLogPolicy::Util::Serialize(action->args()));
ASSERT_EQ("http://www.google.co.uk/", action->arg_url().spec());
}
static void RetrieveActions_ArgUrlApiCalls(
std::unique_ptr<std::vector<scoped_refptr<Action>>> actions) {
size_t api_calls_size = std::size(kUrlApiCalls);
ASSERT_EQ(api_calls_size, actions->size());
for (size_t i = 0; i < actions->size(); i++) {
scoped_refptr<Action> action = actions->at(i);
ASSERT_EQ(kExtensionId, action->extension_id());
ASSERT_EQ(Action::ACTION_DOM_ACCESS, action->action_type());
ASSERT_EQ(kUrlApiCalls[i], action->api_name());
ASSERT_EQ("[\"\\u003Carg_url>\"]",
ActivityLogPolicy::Util::Serialize(action->args()));
ASSERT_EQ("http://www.google.co.uk/", action->arg_url().spec());
ASSERT_TRUE(action->other());
const base::Value::Dict& other = *action->other();
std::optional<int> dom_verb =
other.FindInt(activity_log_constants::kActionDomVerb);
ASSERT_EQ(DomActionType::SETTER, dom_verb);
}
}
};
TEST_F(ActivityLogTest, Construct) {
ASSERT_TRUE(GetDatabaseEnabled());
ASSERT_FALSE(GetWatchdogActive());
}
TEST_F(ActivityLogTest, LogAndFetchActions) {
ActivityLog* activity_log = ActivityLog::GetInstance(profile());
ASSERT_TRUE(GetDatabaseEnabled());
// Write some API calls
scoped_refptr<Action> action = new Action(kExtensionId,
base::Time::Now(),
Action::ACTION_API_CALL,
"tabs.testMethod");
activity_log->LogAction(action);
action = new Action(kExtensionId,
base::Time::Now(),
Action::ACTION_DOM_ACCESS,
"document.write");
action->set_page_url(GURL("http://www.google.com"));
activity_log->LogAction(action);
activity_log->GetFilteredActions(
kExtensionId, Action::ACTION_ANY, "", "", "", 0,
base::BindOnce(ActivityLogTest::RetrieveActions_LogAndFetchActions2));
}
TEST_F(ActivityLogTest, LogPrerender) {
scoped_refptr<const Extension> extension =
ExtensionBuilder()
.SetManifest(base::Value::Dict()
.Set("name", "Test extension")
.Set("version", "1.0.0")
.Set("manifest_version", 2))
.Build();
ExtensionRegistrar::Get(profile())->AddExtension(extension);
ActivityLog* activity_log = ActivityLog::GetInstance(profile());
EXPECT_TRUE(activity_log->ShouldLog(extension->id()));
ASSERT_TRUE(GetDatabaseEnabled());
GURL url("http://www.google.com");
prerender::NoStatePrefetchManager* no_state_prefetch_manager =
prerender::NoStatePrefetchManagerFactory::GetForBrowserContext(profile());
const gfx::Size kSize(640, 480);
std::unique_ptr<prerender::NoStatePrefetchHandle> no_state_prefetch_handle(
no_state_prefetch_manager->AddSameOriginSpeculation(
url,
web_contents()->GetController().GetDefaultSessionStorageNamespace(),
kSize, url::Origin::Create(url)));
const std::vector<content::WebContents*> contentses =
no_state_prefetch_manager->GetAllNoStatePrefetchingContentsForTesting();
ASSERT_EQ(1U, contentses.size());
content::WebContents *contents = contentses[0];
ASSERT_TRUE(no_state_prefetch_manager->IsWebContentsPrefetching(contents));
activity_log->OnScriptsExecuted(contents, {{extension->id(), {"script"}}},
url);
activity_log->GetFilteredActions(
extension->id(), Action::ACTION_ANY, "", "", "", 0,
base::BindOnce(ActivityLogTest::Arguments_Prerender));
no_state_prefetch_manager->CancelAllPrerenders();
}
TEST_F(ActivityLogTest, ArgUrlExtraction) {
ActivityLog* activity_log = ActivityLog::GetInstance(profile());
base::Time now = base::Time::Now();
// Submit a DOM API call which should have its URL extracted into the arg_url
// field.
EXPECT_TRUE(activity_log->ShouldLog(kExtensionId));
scoped_refptr<Action> action = new Action(kExtensionId,
now,
Action::ACTION_DOM_ACCESS,
"XMLHttpRequest.open");
action->set_page_url(GURL("http://www.google.com/"));
action->mutable_args().Append("POST");
action->mutable_args().Append("http://api.google.com/");
action->mutable_other().Set(activity_log_constants::kActionDomVerb,
DomActionType::METHOD);
activity_log->LogAction(action);
// Submit a DOM API call with a relative URL in the argument, which should be
// resolved relative to the page URL.
action = new Action(kExtensionId, now - base::Seconds(1),
Action::ACTION_DOM_ACCESS, "XMLHttpRequest.open");
action->set_page_url(GURL("http://www.google.com/"));
action->mutable_args().Append("POST");
action->mutable_args().Append("/api/");
action->mutable_other().Set(activity_log_constants::kActionDomVerb,
DomActionType::METHOD);
activity_log->LogAction(action);
// Submit a DOM API call with a relative URL but no base page URL against
// which to resolve.
action = new Action(kExtensionId, now - base::Seconds(2),
Action::ACTION_DOM_ACCESS, "XMLHttpRequest.open");
action->mutable_args().Append("POST");
action->mutable_args().Append("/api/");
action->mutable_other().Set(activity_log_constants::kActionDomVerb,
DomActionType::METHOD);
activity_log->LogAction(action);
// Submit an API call with an embedded URL.
action = new Action(kExtensionId, now - base::Seconds(3),
Action::ACTION_API_CALL, "windows.create");
base::Value::List list;
auto item = base::Value::Dict().Set("url", "http://www.google.co.uk");
list.Append(std::move(item));
action->set_args(std::move(list));
activity_log->LogAction(action);
activity_log->GetFilteredActions(
kExtensionId, Action::ACTION_ANY, "", "", "", -1,
base::BindOnce(ActivityLogTest::RetrieveActions_ArgUrlExtraction));
}
TEST_F(ActivityLogTest, UninstalledExtension) {
scoped_refptr<const Extension> extension =
ExtensionBuilder()
.SetManifest(base::Value::Dict()
.Set("name", "Test extension")
.Set("version", "1.0.0")
.Set("manifest_version", 2))
.Build();
ActivityLog* activity_log = ActivityLog::GetInstance(profile());
ASSERT_TRUE(GetDatabaseEnabled());
// Write some API calls
scoped_refptr<Action> action = new Action(extension->id(),
base::Time::Now(),
Action::ACTION_API_CALL,
"tabs.testMethod");
activity_log->LogAction(action);
action = new Action(extension->id(),
base::Time::Now(),
Action::ACTION_DOM_ACCESS,
"document.write");
action->set_page_url(GURL("http://www.google.com"));
activity_log->OnExtensionUninstalled(
nullptr, extension.get(), extensions::UNINSTALL_REASON_FOR_TESTING);
activity_log->GetFilteredActions(
extension->id(), Action::ACTION_ANY, "", "", "", -1,
base::BindOnce(ActivityLogTest::RetrieveActions_LogAndFetchActions0));
}
TEST_F(ActivityLogTest, ArgUrlApiCalls) {
ActivityLog* activity_log = ActivityLog::GetInstance(profile());
base::Time now = base::Time::Now();
int api_calls_size = std::size(kUrlApiCalls);
scoped_refptr<Action> action;
for (int i = 0; i < api_calls_size; i++) {
action = new Action(kExtensionId, now - base::Seconds(i),
Action::ACTION_DOM_ACCESS, kUrlApiCalls[i]);
action->mutable_args().Append("http://www.google.co.uk");
action->mutable_other().Set(activity_log_constants::kActionDomVerb,
DomActionType::SETTER);
activity_log->LogAction(action);
}
activity_log->GetFilteredActions(
kExtensionId, Action::ACTION_ANY, "", "", "", -1,
base::BindOnce(ActivityLogTest::RetrieveActions_ArgUrlApiCalls));
}
TEST_F(ActivityLogTest, DeleteActivitiesByExtension) {
const std::string kOtherExtensionId = std::string(32, 'c');
ActivityLog* activity_log = ActivityLog::GetInstance(profile());
ASSERT_TRUE(GetDatabaseEnabled());
scoped_refptr<Action> action =
base::MakeRefCounted<Action>(kExtensionId, base::Time::Now(),
Action::ACTION_API_CALL, "tabs.testMethod");
activity_log->LogAction(action);
action =
base::MakeRefCounted<Action>(kOtherExtensionId, base::Time::Now(),
Action::ACTION_DOM_ACCESS, "document.write");
action->set_page_url(GURL("http://www.google.com"));
activity_log->LogAction(action);
activity_log->RemoveExtensionData(kExtensionId);
activity_log->GetFilteredActions(
kExtensionId, Action::ACTION_ANY, "", "", "", 0,
base::BindOnce(ActivityLogTest::RetrieveActions_LogAndFetchActions0));
activity_log->GetFilteredActions(
kOtherExtensionId, Action::ACTION_ANY, "", "", "", 0,
base::BindOnce(ActivityLogTest::RetrieveActions_LogAndFetchActions1));
}
class ActivityLogTestWithoutSwitch : public ActivityLogTest {
public:
ActivityLogTestWithoutSwitch() = default;
~ActivityLogTestWithoutSwitch() override = default;
bool enable_activity_logging_switch() const override { return false; }
};
TEST_F(ActivityLogTestWithoutSwitch, TestShouldLog) {
static_cast<TestExtensionSystem*>(
ExtensionSystem::Get(profile()))->SetReady();
ActivityLog* activity_log = ActivityLog::GetInstance(profile());
scoped_refptr<const Extension> empty_extension =
ExtensionBuilder("Test").Build();
ExtensionRegistrar::Get(profile())->AddExtension(empty_extension);
// Since the command line switch for logging isn't enabled and there's no
// watchdog app active, the activity log shouldn't log anything.
EXPECT_FALSE(activity_log->ShouldLog(empty_extension->id()));
const char kAllowlistedExtensionId[] = "eplckmlabaanikjjcgnigddmagoglhmp";
scoped_refptr<const Extension> activity_log_extension =
ExtensionBuilder("Test").SetID(kAllowlistedExtensionId).Build();
ExtensionRegistrar::Get(profile())->AddExtension(activity_log_extension);
// Loading a watchdog app means the activity log should log other extension
// activities...
EXPECT_TRUE(activity_log->ShouldLog(empty_extension->id()));
// ... but not those of the watchdog app...
EXPECT_FALSE(activity_log->ShouldLog(activity_log_extension->id()));
// ... or activities from the browser/extensions page, represented by an empty
// extension ID.
EXPECT_FALSE(activity_log->ShouldLog(std::string()));
ExtensionRegistrar::Get(profile())->DisableExtension(
activity_log_extension->id(), {disable_reason::DISABLE_USER_ACTION});
// Disabling the watchdog app means that we're back to never logging anything.
EXPECT_FALSE(activity_log->ShouldLog(empty_extension->id()));
}
} // namespace extensions
|