blob: 0616c6e40dcb1cd0c6f9f4d0d1e1295467f768e6 (
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
70
71
72
73
74
75
76
77
78
79
80
81
82
|
// Copyright (c) 2009 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.
// This file contains stub implementations of the functions declared in
// browser_dialogs.h that are currently unimplemented in GTK-views.
#include "base/logging.h"
#include "chrome/browser/views/browser_dialogs.h"
namespace browser {
void ShowBugReportView(views::Widget* parent,
Profile* profile,
TabContents* tab) {
NOTIMPLEMENTED();
}
void ShowClearBrowsingDataView(views::Widget* parent,
Profile* profile) {
NOTIMPLEMENTED();
}
void ShowSelectProfileDialog() {
NOTIMPLEMENTED();
}
void ShowImporterView(views::Widget* parent,
Profile* profile) {
NOTIMPLEMENTED();
}
void ShowBookmarkBubbleView(views::Window* parent,
const gfx::Rect& bounds,
InfoBubbleDelegate* delegate,
Profile* profile,
const GURL& url,
bool newly_bookmarked) {
NOTIMPLEMENTED();
}
void HideBookmarkBubbleView() {
NOTIMPLEMENTED();
}
bool IsBookmarkBubbleViewShowing() {
NOTIMPLEMENTED();
return false;
}
void ShowBookmarkManagerView(Profile* profile) {
NOTIMPLEMENTED();
}
void ShowAboutChromeView(views::Widget* parent,
Profile* profile) {
NOTIMPLEMENTED();
}
void ShowHtmlDialogView(gfx::NativeWindow parent, Browser* browser,
HtmlDialogUIDelegate* delegate) {
NOTIMPLEMENTED();
}
FindBar* CreateFindBar(BrowserView* browser_view) {
NOTIMPLEMENTED();
return NULL;
}
void ShowPasswordsExceptionsWindowView(Profile* profile) {
NOTIMPLEMENTED();
}
void ShowKeywordEditorView(Profile* profile) {
NOTIMPLEMENTED();
}
void ShowNewProfileDialog() {
NOTIMPLEMENTED();
}
} // namespace browser
|