| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "webkit/default_plugin/plugin_impl_win.h" | 5 #include "webkit/default_plugin/plugin_impl_win.h" |
| 6 | 6 |
| 7 #include <shellapi.h> | 7 #include <shellapi.h> |
| 8 | 8 |
| 9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
| 10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| 11 #include "base/string_util.h" | 11 #include "base/string_util.h" |
| 12 #include "base/time.h" | |
| 13 #include "googleurl/src/gurl.h" | 12 #include "googleurl/src/gurl.h" |
| 14 #include "grit/webkit_strings.h" | 13 #include "grit/webkit_strings.h" |
| 15 #include "unicode/locid.h" | 14 #include "unicode/locid.h" |
| 16 #include "webkit/default_plugin/activex_installer.h" | 15 #include "webkit/default_plugin/activex_installer.h" |
| 17 #include "webkit/activex_shim/activex_shared.h" | 16 #include "webkit/activex_shim/activex_shared.h" |
| 18 #include "webkit/activex_shim/npn_scripting.h" | 17 #include "webkit/activex_shim/npn_scripting.h" |
| 19 #include "webkit/default_plugin/default_plugin_shared.h" | 18 #include "webkit/default_plugin/default_plugin_shared.h" |
| 20 #include "webkit/default_plugin/plugin_main.h" | 19 #include "webkit/default_plugin/plugin_main.h" |
| 21 #include "webkit/glue/webkit_glue.h" | 20 #include "webkit/glue/webkit_glue.h" |
| 22 | 21 |
| (...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 744 return true; | 743 return true; |
| 745 } | 744 } |
| 746 | 745 |
| 747 void PluginInstallerImpl::NotifyPluginStatus(int status) { | 746 void PluginInstallerImpl::NotifyPluginStatus(int status) { |
| 748 default_plugin::g_browser->getvalue( | 747 default_plugin::g_browser->getvalue( |
| 749 instance_, | 748 instance_, |
| 750 static_cast<NPNVariable>( | 749 static_cast<NPNVariable>( |
| 751 default_plugin::kMissingPluginStatusStart + status), | 750 default_plugin::kMissingPluginStatusStart + status), |
| 752 NULL); | 751 NULL); |
| 753 } | 752 } |
| OLD | NEW |