blob: fded391aad1d5ef47a8acbdc0aacec787d4027f1 (
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
|
// Copyright (c) 2011 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/common/about_handler.h"
#include "chrome/common/url_constants.h"
#include "googleurl/src/gurl.h"
namespace chrome_about_handler {
// This needs to match up with about_urls_handlers in
// chrome/renderer/about_handler.cc.
const char* const about_urls[] = {
chrome::kChromeUICrashURL,
chrome::kChromeUIKillURL,
chrome::kChromeUIHangURL,
chrome::kChromeUIShorthangURL,
NULL,
};
const size_t about_urls_size = arraysize(about_urls);
bool WillHandle(const GURL& url) {
if (!url.SchemeIs(chrome::kChromeUIScheme))
return false;
const char* const* url_handler = about_urls;
while (*url_handler) {
if (GURL(*url_handler) == url)
return true;
url_handler++;
}
return false;
}
} // namespace chrome_about_handler
|