stubs_aura.cc revision 4e180b6a0b4720a9b8e9e959a882386f690f08ff
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
3// found in the LICENSE file.
4
5#include "base/callback.h"
6#include "base/logging.h"
7#include "chrome/browser/external_protocol/external_protocol_handler.h"
8#include "ui/gfx/native_widget_types.h"
9
10#if !defined(OS_WIN)
11#include "chrome/browser/ui/certificate_dialogs.h"
12#endif
13
14#if defined(USE_NSS)
15#include "chrome/browser/ui/crypto_module_password_dialog.h"
16#endif
17
18class SSLClientAuthHandler;
19
20namespace content {
21class WebContents;
22}
23
24namespace net {
25class HttpNetworkSession;
26class SSLCertRequestInfo;
27class X509Certificate;
28}
29
30namespace views {
31class Widget;
32}
33
34namespace chrome {
35
36void ShowAboutIPCDialog() {
37  // TODO(beng):
38  NOTIMPLEMENTED();
39}
40
41}  // namespace chrome
42
43#if !defined(OS_CHROMEOS) && !defined(OS_WIN)
44// static
45void ExternalProtocolHandler::RunExternalProtocolDialog(
46    const GURL& url, int render_process_host_id, int routing_id) {
47}
48#endif
49