blob: b49522d0f72348023542c37d82e15f5b4998fe85 (
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
|
// Copyright (c) 2011 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"
// Functions needed by webkit_glue.
namespace webkit_glue {
void AppendToLog(const char*, int, const char*) {
}
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
void EnableSpdy(bool enable) {
}
void UserMetricsRecordAction(const std::string& action) {
}
} // namespace webkit_glue
|