diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-09 18:29:54 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-09 18:29:54 +0000 |
commit | 43ebb4d08c62012d6719646edb93f44e45e01d42 (patch) | |
tree | 862e4f34be0407f98f4be59015e85953b51a8af6 /webkit/default_plugin/default_plugin_resources.rc | |
parent | 235c17a4631e92a4cbd214863758165a2f573801 (diff) | |
download | chromium_src-43ebb4d08c62012d6719646edb93f44e45e01d42.zip chromium_src-43ebb4d08c62012d6719646edb93f44e45e01d42.tar.gz chromium_src-43ebb4d08c62012d6719646edb93f44e45e01d42.tar.bz2 |
Move default plugin resources into separate .h and .rc files
from the other webkit resources. I'm going to convert
webkit_resources.rc to a cross platform .grd file so I'm moving
the windows specific default plugin code into a separate file.
Review URL: http://codereview.chromium.org/17306
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7812 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/default_plugin/default_plugin_resources.rc')
-rw-r--r-- | webkit/default_plugin/default_plugin_resources.rc | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/webkit/default_plugin/default_plugin_resources.rc b/webkit/default_plugin/default_plugin_resources.rc new file mode 100644 index 0000000..53460af --- /dev/null +++ b/webkit/default_plugin/default_plugin_resources.rc @@ -0,0 +1,31 @@ +// Resources used by webkit/default_plugin. +// +// Paths in this file are relative to SolutionDir. + +#ifdef APSTUDIO_INVOKED + #error // Don't open in the Visual Studio resource editor! +#endif //APSTUDIO_INVOKED + +#include <winuser.h> +#include "webkit\\default_plugin\\default_plugin_resources.h" + + +///////////////////////////////////////////////////////////////////////////// +// +// Dialog template for the plugin installation dialog. +// +IDD_DEFAULT_PLUGIN_INSTALL_DIALOG DIALOGEX 0, 0, 240, 130 +STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Plug-in Needed" +FONT 8, "MS Shell Dlg", 400, 0, 0x1 +BEGIN + DEFPUSHBUTTON "",IDB_GET_THE_PLUGIN,32,100,81,14 + PUSHBUTTON "",IDCANCEL,133,100,74,14 + LTEXT "",IDC_PLUGIN_INSTALL_CONFIRMATION_LABEL,17,50,204,27 +END + +///////////////////////////////////////////////////////////////////////////// +// +// Icon used by the default plugin window. +// +IDI_DEFAULT_PLUGIN_ICON ICON "webkit\\default_plugin\\default_plugin.ico" |