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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
// 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 "chrome/browser/extensions/extension_tab_util.h"
#include "base/logging.h"
#include "chrome/browser/sessions/session_id.h"
#include "url/gurl.h"
using content::WebContents;
namespace extensions {
// static
int ExtensionTabUtil::GetWindowId(const Browser* browser) {
NOTIMPLEMENTED();
return -1;
}
// static
int ExtensionTabUtil::GetWindowIdOfTabStripModel(
const TabStripModel* tab_strip_model) {
NOTIMPLEMENTED();
return -1;
}
// static
int ExtensionTabUtil::GetTabId(WebContents* web_contents) {
return SessionID::IdForTab(web_contents);
}
// static
int ExtensionTabUtil::GetWindowIdOfTab(const WebContents* web_contents) {
NOTIMPLEMENTED();
return -1;
}
// static
base::DictionaryValue* ExtensionTabUtil::CreateTabValue(
WebContents* contents,
TabStripModel* tab_strip,
int tab_index,
const Extension* extension) {
NOTIMPLEMENTED();
return NULL;
}
// static
base::ListValue* ExtensionTabUtil::CreateTabList(const Browser* browser,
const Extension* extension) {
NOTIMPLEMENTED();
return NULL;
}
// static
base::DictionaryValue* ExtensionTabUtil::CreateTabValue(
WebContents* contents,
TabStripModel* tab_strip,
int tab_index) {
NOTIMPLEMENTED();
return NULL;
}
// static
bool ExtensionTabUtil::GetTabStripModel(const WebContents* web_contents,
TabStripModel** tab_strip_model,
int* tab_index) {
NOTIMPLEMENTED();
return false;
}
// static
bool ExtensionTabUtil::GetDefaultTab(Browser* browser,
content::WebContents** contents,
int* tab_id) {
NOTIMPLEMENTED();
return false;
}
// static
bool ExtensionTabUtil::GetTabById(int tab_id,
Profile* profile,
bool include_incognito,
Browser** browser,
TabStripModel** tab_strip,
content::WebContents** contents,
int* tab_index) {
NOTIMPLEMENTED();
return false;
}
// static
GURL ExtensionTabUtil::ResolvePossiblyRelativeURL(const std::string& url_string,
const Extension* extension) {
NOTIMPLEMENTED();
return GURL();
}
// static
bool ExtensionTabUtil::IsCrashURL(const GURL& url) {
NOTIMPLEMENTED();
return false;
}
// static
void ExtensionTabUtil::CreateTab(WebContents* web_contents,
const std::string& extension_id,
WindowOpenDisposition disposition,
const gfx::Rect& initial_pos,
bool user_gesture) {
NOTIMPLEMENTED();
}
// static
void ExtensionTabUtil::ForEachTab(
const base::Callback<void(WebContents*)>& callback) {
NOTIMPLEMENTED();
}
// static
WindowController* ExtensionTabUtil::GetWindowControllerOfTab(
const WebContents* web_contents) {
NOTIMPLEMENTED();
return NULL;
}
} // namespace extensions
|