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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
// 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.
#include "temp_scaffolding_stubs.h"
#include "base/file_util.h"
#include "base/thread.h"
#include "base/path_service.h"
#include "base/singleton.h"
#include "build/build_config.h"
#include "chrome/browser/browser.h"
#include "chrome/browser/browser_shutdown.h"
#include "chrome/browser/history/in_memory_history_backend.h"
#include "chrome/browser/plugin_service.h"
#include "chrome/browser/profile_manager.h"
#include "chrome/browser/rlz/rlz.h"
#include "chrome/browser/shell_integration.h"
#include "chrome/common/chrome_constants.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/pref_service.h"
// static
size_t SessionRestore::num_tabs_to_load_ = 0;
BrowserProcessImpl::BrowserProcessImpl(const CommandLine& command_line)
: main_notification_service_(new NotificationService),
memory_model_(HIGH_MEMORY_MODEL),
created_local_state_(), created_metrics_service_(),
created_profile_manager_() {
g_browser_process = this;
}
BrowserProcessImpl::~BrowserProcessImpl() {
g_browser_process = NULL;
}
void BrowserProcessImpl::CreateLocalState() {
DCHECK(!created_local_state_ && local_state_.get() == NULL);
created_local_state_ = true;
std::wstring local_state_path;
PathService::Get(chrome::FILE_LOCAL_STATE, &local_state_path);
local_state_.reset(new PrefService(local_state_path));
}
void BrowserProcessImpl::CreateMetricsService() {
DCHECK(!created_metrics_service_ && metrics_service_.get() == NULL);
created_metrics_service_ = true;
metrics_service_.reset(new MetricsService);
}
void BrowserProcessImpl::CreateProfileManager() {
DCHECK(!created_profile_manager_ && profile_manager_.get() == NULL);
created_profile_manager_ = true;
profile_manager_.reset(new ProfileManager());
}
MetricsService* BrowserProcessImpl::metrics_service() {
if (!created_metrics_service_)
CreateMetricsService();
return metrics_service_.get();
}
ProfileManager* BrowserProcessImpl::profile_manager() {
if (!created_profile_manager_)
CreateProfileManager();
return profile_manager_.get();
}
PrefService* BrowserProcessImpl::local_state() {
if (!created_local_state_)
CreateLocalState();
return local_state_.get();
}
//--------------------------------------------------------------------------
UserDataManager* UserDataManager::instance_ = NULL;
UserDataManager* UserDataManager::Create() {
DCHECK(!instance_);
std::wstring user_data;
PathService::Get(chrome::DIR_USER_DATA, &user_data);
instance_ = new UserDataManager(user_data);
return instance_;
}
UserDataManager* UserDataManager::Get() {
DCHECK(instance_);
return instance_;
}
bool ShellIntegration::SetAsDefaultBrowser() {
return true;
}
bool ShellIntegration::IsDefaultBrowser() {
return true;
}
//--------------------------------------------------------------------------
namespace browser_shutdown {
void ReadLastShutdownInfo() { }
void Shutdown() { }
void OnShutdownStarting(ShutdownType type) { }
}
void OpenFirstRunDialog(Profile* profile) { }
GURL NewTabUIURL() {
return GURL();
}
//--------------------------------------------------------------------------
PluginService* PluginService::GetInstance() {
return Singleton<PluginService>::get();
}
PluginService::PluginService()
: main_message_loop_(MessageLoop::current()),
resource_dispatcher_host_(NULL),
ui_locale_(g_browser_process->GetApplicationLocale()),
plugin_shutdown_handler_(NULL) {
}
PluginService::~PluginService() {
}
void PluginService::SetChromePluginDataDir(const FilePath& data_dir) {
AutoLock lock(lock_);
chrome_plugin_data_dir_ = data_dir;
}
//--------------------------------------------------------------------------
void InstallJankometer(const CommandLine&) {
}
//--------------------------------------------------------------------------
void Browser::Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details) {
}
GURL Browser::GetHomePage() {
return GURL("http://dev.chromium.org");
}
void Browser::LoadingStateChanged(TabContents* source) {
}
//--------------------------------------------------------------------------
TabContents* TabContents::CreateWithType(TabContentsType type,
Profile* profile,
SiteInstance* instance) {
return new TabContents;
}
//--------------------------------------------------------------------------
bool RLZTracker::GetAccessPointRlz(AccessPoint point, std::wstring* rlz) {
return false;
}
bool RLZTracker::RecordProductEvent(Product product, AccessPoint point,
Event event) {
return false;
}
// This depends on porting all the plugin IPC messages.
bool IsPluginProcess() {
return false;
}
#if defined(OS_MACOSX)
// We link this in for now to avoid hauling in all of WebCore (which we will
// have to eventually do).
namespace webkit_glue {
std::string GetUserAgent(const GURL& url) {
return "";
}
}
#endif
#if defined(OS_LINUX)
BrowserWindow* BrowserWindow::CreateBrowserWindow(Browser* browser) {
NOTIMPLEMENTED() << "CreateBrowserWindow";
return NULL;
}
#endif
//--------------------------------------------------------------------------
namespace chrome_browser_net {
void EnableDnsDetailedLog(bool) {}
void EnableDnsPrefetch(bool) {}
} // namespace chrome_browser_net
|