OLD | NEW |
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/browser/frame_host/debug_urls.h" | 5 #include "content/browser/frame_host/debug_urls.h" |
6 | 6 |
7 #if defined(SYZYASAN) | 7 #if defined(SYZYASAN) |
8 #include <windows.h> | 8 #include <windows.h> |
9 #endif | 9 #endif |
10 | 10 |
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 return false; | 254 return false; |
255 | 255 |
256 if (url.SchemeIs(url::kJavaScriptScheme)) | 256 if (url.SchemeIs(url::kJavaScriptScheme)) |
257 return true; | 257 return true; |
258 | 258 |
259 return url == GURL(kChromeUIBadCastCrashURL) || | 259 return url == GURL(kChromeUIBadCastCrashURL) || |
260 url == GURL(kChromeUICrashURL) || | 260 url == GURL(kChromeUICrashURL) || |
261 url == GURL(kChromeUIDumpURL) || | 261 url == GURL(kChromeUIDumpURL) || |
262 url == GURL(kChromeUIKillURL) || | 262 url == GURL(kChromeUIKillURL) || |
263 url == GURL(kChromeUIHangURL) || | 263 url == GURL(kChromeUIHangURL) || |
264 url == GURL(kChromeUIShorthangURL); | 264 url == GURL(kChromeUIShorthangURL) || |
| 265 url == GURL(kChromeUIMemoryExhaustURL); |
265 } | 266 } |
266 | 267 |
267 } // namespace content | 268 } // namespace content |
OLD | NEW |