blob: e748aa13a38dc98e2bc3ed5337727b248897d4d5 (
plain)
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
|
// Copyright (c) 2010 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 "chrome/renderer/about_handler.h"
#include "base/process_util.h"
#include "base/threading/platform_thread.h"
#include "chrome/common/about_handler.h"
#include "googleurl/src/gurl.h"
typedef void (*AboutHandlerFuncPtr)();
// This needs to match up with chrome_about_handler::about_urls in
// chrome/common/about_handler.cc.
static const AboutHandlerFuncPtr about_urls_handlers[] = {
AboutHandler::AboutCrash,
AboutHandler::AboutKill,
AboutHandler::AboutHang,
AboutHandler::AboutShortHang,
NULL,
};
// static
bool AboutHandler::MaybeHandle(const GURL& url) {
if (url.scheme() != chrome_about_handler::kAboutScheme)
return false;
int about_urls_handler_index = 0;
const char* const* url_handler = chrome_about_handler::about_urls;
while (*url_handler) {
if (GURL(*url_handler) == url) {
about_urls_handlers[about_urls_handler_index]();
return true; // theoretically :]
}
url_handler++;
about_urls_handler_index++;
}
return false;
}
// static
void AboutHandler::AboutCrash() {
int *zero = NULL;
*zero = 0; // Null pointer dereference: kaboom!
}
// static
void AboutHandler::AboutKill() {
base::KillProcess(base::GetCurrentProcessHandle(), 1, false);
}
// static
void AboutHandler::AboutHang() {
for (;;) {
base::PlatformThread::Sleep(1000);
}
}
// static
void AboutHandler::AboutShortHang() {
base::PlatformThread::Sleep(20000);
}
// static
size_t AboutHandler::AboutURLHandlerSize() {
return arraysize(about_urls_handlers);
}
|