Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: content/renderer/render_thread_impl.cc

Issue 196503005: Make DevTools support for the embedded SharedWorker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix UAF bug Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/renderer/render_thread_impl.h" 5 #include "content/renderer/render_thread_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <limits> 8 #include <limits>
9 #include <map> 9 #include <map>
10 #include <vector> 10 #include <vector>
(...skipping 1403 matching lines...) Expand 10 before | Expand all | Expand 10 after
1414 } 1414 }
1415 #endif 1415 #endif
1416 1416
1417 void RenderThreadImpl::OnCreateNewSharedWorker( 1417 void RenderThreadImpl::OnCreateNewSharedWorker(
1418 const WorkerProcessMsg_CreateWorker_Params& params) { 1418 const WorkerProcessMsg_CreateWorker_Params& params) {
1419 // EmbeddedSharedWorkerStub will self-destruct. 1419 // EmbeddedSharedWorkerStub will self-destruct.
1420 new EmbeddedSharedWorkerStub(params.url, 1420 new EmbeddedSharedWorkerStub(params.url,
1421 params.name, 1421 params.name,
1422 params.content_security_policy, 1422 params.content_security_policy,
1423 params.security_policy_type, 1423 params.security_policy_type,
1424 params.pause_on_start,
1424 params.route_id); 1425 params.route_id);
1425 } 1426 }
1426 1427
1427 void RenderThreadImpl::OnMemoryPressure( 1428 void RenderThreadImpl::OnMemoryPressure(
1428 base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level) { 1429 base::MemoryPressureListener::MemoryPressureLevel memory_pressure_level) {
1429 base::allocator::ReleaseFreeMemory(); 1430 base::allocator::ReleaseFreeMemory();
1430 1431
1431 if (memory_pressure_level == 1432 if (memory_pressure_level ==
1432 base::MemoryPressureListener::MEMORY_PRESSURE_CRITICAL) { 1433 base::MemoryPressureListener::MEMORY_PRESSURE_CRITICAL) {
1433 // Trigger full v8 garbage collection on critical memory notification. 1434 // Trigger full v8 garbage collection on critical memory notification.
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
1513 hidden_widget_count_--; 1514 hidden_widget_count_--;
1514 1515
1515 if (!GetContentClient()->renderer()->RunIdleHandlerWhenWidgetsHidden()) { 1516 if (!GetContentClient()->renderer()->RunIdleHandlerWhenWidgetsHidden()) {
1516 return; 1517 return;
1517 } 1518 }
1518 1519
1519 ScheduleIdleHandler(kLongIdleHandlerDelayMs); 1520 ScheduleIdleHandler(kLongIdleHandlerDelayMs);
1520 } 1521 }
1521 1522
1522 } // namespace content 1523 } // namespace content
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | content/renderer/shared_worker/embedded_shared_worker_stub.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698