| Index: webkit/glue/webkit_glue.cc
|
| ===================================================================
|
| --- webkit/glue/webkit_glue.cc (revision 200310)
|
| +++ webkit/glue/webkit_glue.cc (working copy)
|
| @@ -84,9 +84,6 @@
|
|
|
| namespace webkit_glue {
|
|
|
| -// Global variable used by the plugin quirk "die after unload".
|
| -bool g_forcefully_terminate_plugin_process = false;
|
| -
|
| void SetJavaScriptFlags(const std::string& str) {
|
| v8::V8::SetFlagsFromString(str.data(), static_cast<int>(str.size()));
|
| }
|
| @@ -160,14 +157,6 @@
|
| web_file_info->type = WebKit::WebFileInfo::TypeFile;
|
| }
|
|
|
| -void SetForcefullyTerminatePluginProcess(bool value) {
|
| - g_forcefully_terminate_plugin_process = value;
|
| -}
|
| -
|
| -bool ShouldForcefullyTerminatePluginProcess() {
|
| - return g_forcefully_terminate_plugin_process;
|
| -}
|
| -
|
| WebCanvas* ToWebCanvas(skia::PlatformCanvas* canvas) {
|
| return canvas;
|
| }
|
|
|