Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(471)

Unified Diff: webkit/glue/chromium_bridge_impl.cc

Issue 27255: Linux: first part of removing GTK from the renderer (Closed)
Patch Set: switch to WebKit style names for resources Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/chrome_resources.scons ('k') | webkit/glue/resources/linux-checkbox-off.png » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/chromium_bridge_impl.cc
diff --git a/webkit/glue/chromium_bridge_impl.cc b/webkit/glue/chromium_bridge_impl.cc
index 4fb80c4d6ccc6a141a20aff80f926909d2693b45..8c701a47b221bd011a89f44fd2cef714b953b011 100644
--- a/webkit/glue/chromium_bridge_impl.cc
+++ b/webkit/glue/chromium_bridge_impl.cc
@@ -222,6 +222,14 @@ PassRefPtr<Image> ChromiumBridge::loadPlatformImageResource(const char* name) {
resource_id = IDR_TICKMARK_DASH;
} else if (!strcmp(name, "panIcon")) {
resource_id = IDR_PAN_SCROLL_ICON;
+ } else if (!strcmp(name, "linuxCheckboxOff")) {
+ resource_id = IDR_LINUX_CHECKBOX_OFF;
+ } else if (!strcmp(name, "linuxCheckboxOn")) {
+ resource_id = IDR_LINUX_CHECKBOX_ON;
+ } else if (!strcmp(name, "linuxRadioOff")) {
+ resource_id = IDR_LINUX_RADIO_OFF;
+ } else if (!strcmp(name, "linuxRadioOn")) {
+ resource_id = IDR_LINUX_RADIO_ON;
} else if (!strcmp(name, "deleteButton")) {
if (webkit_glue::IsLayoutTestMode()) {
RefPtr<Image> image = BitmapImage::create();
« no previous file with comments | « chrome/app/chrome_resources.scons ('k') | webkit/glue/resources/linux-checkbox-off.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698