Home
last modified time | relevance | path

Searched refs:theme_id (Results 1 – 13 of 13) sorted by relevance

/external/chromium/chrome/browser/extensions/
Dextension_install_ui_browsertest.cc46 std::string theme_id = theme->id(); in IN_PROC_BROWSER_TEST_F() local
57 ASSERT_EQ(theme_id, theme->id()); in IN_PROC_BROWSER_TEST_F()
61 ASSERT_EQ(theme_id, theme->id()); in IN_PROC_BROWSER_TEST_F()
73 std::string theme_id = theme->id(); in IN_PROC_BROWSER_TEST_F() local
80 EXPECT_FALSE(theme_id == theme2->id()); in IN_PROC_BROWSER_TEST_F()
/external/chromium_org/chrome/browser/extensions/
Dextension_install_ui_browsertest.cc92 std::string theme_id = theme->id(); in IN_PROC_BROWSER_TEST_F() local
100 ASSERT_EQ(theme_id, theme->id()); in IN_PROC_BROWSER_TEST_F()
104 ASSERT_EQ(theme_id, theme->id()); in IN_PROC_BROWSER_TEST_F()
120 std::string theme_id = theme->id(); in IN_PROC_BROWSER_TEST_F() local
125 EXPECT_FALSE(theme_id == theme2->id()); in IN_PROC_BROWSER_TEST_F()
/external/chromium_org/chrome/common/
Dinstant_types.cc63 theme_id == rhs.theme_id && in operator ==()
Dinstant_types.h137 std::string theme_id; member
Drender_messages.h196 IPC_STRUCT_TRAITS_MEMBER(theme_id)
/external/chromium_org/chrome/browser/ui/gtk/tabs/
Dtab_renderer_gtk.cc488 int theme_id; in PaintFaviconArea() local
491 theme_id = IDR_THEME_TOOLBAR; in PaintFaviconArea()
493 theme_id = data_.incognito ? IDR_THEME_TAB_BACKGROUND_INCOGNITO : in PaintFaviconArea()
496 if (!theme_service_->HasCustomImage(theme_id)) in PaintFaviconArea()
501 const gfx::Image tab_bg = theme_service_->GetImageNamed(theme_id); in PaintFaviconArea()
1018 int theme_id = data_.incognito ? in PaintInactiveTabBackground() local
1021 gfx::Image tab_bg = theme_service_->GetImageNamed(theme_id); in PaintInactiveTabBackground()
1026 int offset_y = theme_service_->HasCustomImage(theme_id) ? in PaintInactiveTabBackground()
/external/chromium/chrome/browser/ui/gtk/tabs/
Dtab_renderer_gtk.cc387 int theme_id; in PaintFaviconArea() local
390 theme_id = IDR_THEME_TOOLBAR; in PaintFaviconArea()
393 theme_id = IDR_THEME_TAB_BACKGROUND; in PaintFaviconArea()
395 theme_id = IDR_THEME_TAB_BACKGROUND_INCOGNITO; in PaintFaviconArea()
397 if (!theme_service_->HasCustomImage(theme_id)) in PaintFaviconArea()
400 SkBitmap* tab_bg = theme_service_->GetBitmapNamed(theme_id); in PaintFaviconArea()
/external/chromium/chrome/browser/themes/
Dbrowser_theme_pack.h187 uint8 theme_id[16];
Dbrowser_theme_pack.cc391 std::string theme_id(reinterpret_cast<char*>(pack->header_->theme_id), in BuildFromDataPack()
394 if (theme_id != truncated_id) { in BuildFromDataPack()
395 DLOG(ERROR) << "Wrong id: " << theme_id << " vs " << expected_id; in BuildFromDataPack()
598 memcpy(header_->theme_id, id.c_str(), Extension::kIdSize); in BuildHeader()
/external/chromium_org/chrome/renderer/searchbox/
Dsearchbox_extension.cc812 if (extensions::Extension::IdIsValid(theme_info.theme_id)) { in GetThemeBackgroundInfo()
816 theme_info.theme_id.c_str(), in GetThemeBackgroundInfo()
817 theme_info.theme_id.c_str()))); in GetThemeBackgroundInfo()
881 theme_info.theme_id.c_str(), in GetThemeBackgroundInfo()
882 theme_info.theme_id.c_str()))); in GetThemeBackgroundInfo()
/external/chromium_org/chrome/browser/themes/
Dbrowser_theme_pack.h226 uint8 theme_id[16]; member
Dbrowser_theme_pack.cc725 std::string theme_id(reinterpret_cast<char*>(pack->header_->theme_id), in BuildFromDataPack()
729 if (theme_id != truncated_id) { in BuildFromDataPack()
730 DLOG(ERROR) << "Wrong id: " << theme_id << " vs " << expected_id; in BuildFromDataPack()
950 memcpy(header_->theme_id, id.c_str(), extensions::id_util::kIdSize); in BuildHeader()
/external/chromium_org/chrome/browser/search/
Dinstant_service.cc384 theme_info_->theme_id = theme_service->GetThemeID(); in OnThemeChanged()