blob: 8f8a8d92ee7e3ccc4609b48d84b74c6805899cc7 (
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
69
|
// Copyright (c) 2012 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 "base/callback.h"
#include "base/logging.h"
#include "chrome/browser/external_protocol/external_protocol_handler.h"
#include "chrome/browser/importer/importer_progress_dialog.h"
#include "ui/gfx/native_widget_types.h"
#if defined(OS_WIN)
#include "chrome/browser/first_run/first_run.h"
#include "chrome/browser/first_run/first_run_import_observer.h"
#include "chrome/browser/ui/views/first_run_bubble.h"
#else
#include "chrome/browser/ui/certificate_dialogs.h"
#endif
#if defined(USE_NSS)
#include "chrome/browser/ui/crypto_module_password_dialog.h"
#endif
class SSLClientAuthHandler;
class TabContents;
namespace net {
class HttpNetworkSession;
class SSLCertRequestInfo;
class X509Certificate;
}
namespace views {
class Widget;
}
namespace browser {
void ShowAboutIPCDialog() {
// TODO(beng):
NOTIMPLEMENTED();
}
} // namespace browser
#if defined(OS_WIN)
void ShowCertificateViewer(gfx::NativeWindow parent,
net::X509Certificate* cert) {
// No certificate viewer on Windows.
}
#endif // OS_WIN
namespace importer {
void ShowImportProgressDialog(uint16 items,
ImporterHost* importer_host,
ImporterObserver* importer_observer,
const SourceProfile& source_profile,
Profile* target_profile,
bool first_run) {
// TODO(beng);
NOTIMPLEMENTED();
}
} // namespace importer
// static
void ExternalProtocolHandler::RunExternalProtocolDialog(
const GURL& url, int render_process_host_id, int routing_id) {
}
|