blob: a82b9419c07c8a5ae47466a4c5d21a3f0043a7a0 (
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
|
// Copyright (c) 2010 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 "webkit/glue/webkit_glue.h"
#include "base/base_paths.h"
#include "base/path_service.h"
#include "googleurl/src/gurl.h"
#include "webkit/glue/plugins/plugin_list.h"
// Functions needed by webkit_glue.
namespace webkit_glue {
void GetPlugins(bool refresh, std::vector<WebPluginInfo>* plugins) {
NPAPI::PluginList::Singleton()->GetPlugins(refresh, plugins);
}
bool IsDefaultPluginEnabled() {
return false;
}
bool IsPluginRunningInRendererProcess() {
return true;
}
void AppendToLog(const char*, int, const char*) {
}
bool GetApplicationDirectory(FilePath* path) {
return PathService::Get(base::DIR_EXE, path);
}
bool GetExeDirectory(FilePath* path) {
return GetApplicationDirectory(path);
}
bool IsProtocolSupportedForMedia(const GURL& url) {
if (url.SchemeIsFile() ||
url.SchemeIs("http") ||
url.SchemeIs("https") ||
url.SchemeIs("data"))
return true;
return false;
}
void CloseCurrentConnections() {
}
void SetCacheMode(bool enabled) {
}
void ClearCache() {
}
std::string GetProductVersion() {
return std::string("DumpRenderTree/0.0.0.0");
}
bool GetPluginFinderURL(std::string* plugin_finder_url) {
return false;
}
#if defined(OS_WIN)
bool DownloadUrl(const std::string& url, HWND caller_window) {
return false;
}
#endif
bool IsSingleProcess() {
return true;
}
} // namespace webkit_glue
|