blob: 6857c8996476873212d5a0e634099f74b293b7c6 (
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
|
// 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 "googleurl/src/gurl.h"
#include "webkit/glue/plugins/plugin_list.h"
#include "webkit/glue/webkit_glue.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 IsProtocolSupportedForMedia(const GURL& url) {
if (url.SchemeIsFile() ||
url.SchemeIs("http") ||
url.SchemeIs("https") ||
url.SchemeIs("data"))
return true;
return false;
}
} // namespace webkit_glue
|