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

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

Issue 2130293003: Change OOMs to raise custom exception rather than breakpoint on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove unused func Created 4 years, 5 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_frame_impl.h" 5 #include "content/renderer/render_frame_impl.h"
6 6
7 #include <map> 7 #include <map>
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 } 389 }
390 390
391 bool IsBrowserInitiated(NavigationParams* pending) { 391 bool IsBrowserInitiated(NavigationParams* pending) {
392 // A navigation resulting from loading a javascript URL should not be treated 392 // A navigation resulting from loading a javascript URL should not be treated
393 // as a browser initiated event. Instead, we want it to look as if the page 393 // as a browser initiated event. Instead, we want it to look as if the page
394 // initiated any load resulting from JS execution. 394 // initiated any load resulting from JS execution.
395 return pending && 395 return pending &&
396 !pending->common_params.url.SchemeIs(url::kJavaScriptScheme); 396 !pending->common_params.url.SchemeIs(url::kJavaScriptScheme);
397 } 397 }
398 398
399 NOINLINE void ExhaustMemory() {
400 volatile void* ptr = nullptr;
401 do {
402 ptr = malloc(0x10000000);
403 } while (ptr);
404 }
405
399 NOINLINE void CrashIntentionally() { 406 NOINLINE void CrashIntentionally() {
400 // NOTE(shess): Crash directly rather than using NOTREACHED() so 407 // NOTE(shess): Crash directly rather than using NOTREACHED() so
401 // that the signature is easier to triage in crash reports. 408 // that the signature is easier to triage in crash reports.
402 // 409 //
403 // Linker's ICF feature may merge this function with other functions with the 410 // Linker's ICF feature may merge this function with other functions with the
404 // same definition and it may confuse the crash report processing system. 411 // same definition and it may confuse the crash report processing system.
405 static int static_variable_to_make_this_function_unique = 0; 412 static int static_variable_to_make_this_function_unique = 0;
406 base::debug::Alias(&static_variable_to_make_this_function_unique); 413 base::debug::Alias(&static_variable_to_make_this_function_unique);
407 414
408 volatile int* zero = nullptr; 415 volatile int* zero = nullptr;
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 } else if (url == GURL(kChromeUIHangURL)) { 505 } else if (url == GURL(kChromeUIHangURL)) {
499 LOG(ERROR) << "Intentionally hanging ourselves with sleep infinite loop" 506 LOG(ERROR) << "Intentionally hanging ourselves with sleep infinite loop"
500 << " because user navigated to " << url.spec(); 507 << " because user navigated to " << url.spec();
501 for (;;) { 508 for (;;) {
502 base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(1)); 509 base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(1));
503 } 510 }
504 } else if (url == GURL(kChromeUIShorthangURL)) { 511 } else if (url == GURL(kChromeUIShorthangURL)) {
505 LOG(ERROR) << "Intentionally sleeping renderer for 20 seconds" 512 LOG(ERROR) << "Intentionally sleeping renderer for 20 seconds"
506 << " because user navigated to " << url.spec(); 513 << " because user navigated to " << url.spec();
507 base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(20)); 514 base::PlatformThread::Sleep(base::TimeDelta::FromSeconds(20));
515 } else if (url == GURL(kChromeUIMemoryExhaustURL)) {
516 LOG(ERROR)
517 << "Intentionally exhausting renderer memory because user navigated to "
518 << url.spec();
519 ExhaustMemory();
508 } 520 }
509 521
510 #if defined(ADDRESS_SANITIZER) || defined(SYZYASAN) 522 #if defined(ADDRESS_SANITIZER) || defined(SYZYASAN)
511 MaybeTriggerAsanError(url); 523 MaybeTriggerAsanError(url);
512 #endif // ADDRESS_SANITIZER || SYZYASAN 524 #endif // ADDRESS_SANITIZER || SYZYASAN
513 } 525 }
514 526
515 // Returns false unless this is a top-level navigation. 527 // Returns false unless this is a top-level navigation.
516 bool IsTopLevelNavigation(WebFrame* frame) { 528 bool IsTopLevelNavigation(WebFrame* frame) {
517 return frame->parent() == NULL; 529 return frame->parent() == NULL;
(...skipping 5802 matching lines...) Expand 10 before | Expand all | Expand 10 after
6320 // event target. Potentially a Pepper plugin will receive the event. 6332 // event target. Potentially a Pepper plugin will receive the event.
6321 // In order to tell whether a plugin gets the last mouse event and which it 6333 // In order to tell whether a plugin gets the last mouse event and which it
6322 // is, we set |pepper_last_mouse_event_target_| to null here. If a plugin gets 6334 // is, we set |pepper_last_mouse_event_target_| to null here. If a plugin gets
6323 // the event, it will notify us via DidReceiveMouseEvent() and set itself as 6335 // the event, it will notify us via DidReceiveMouseEvent() and set itself as
6324 // |pepper_last_mouse_event_target_|. 6336 // |pepper_last_mouse_event_target_|.
6325 pepper_last_mouse_event_target_ = nullptr; 6337 pepper_last_mouse_event_target_ = nullptr;
6326 #endif 6338 #endif
6327 } 6339 }
6328 6340
6329 } // namespace content 6341 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698