Index: chrome/browser/chrome_browser_main.cc |
diff --git a/chrome/browser/chrome_browser_main.cc b/chrome/browser/chrome_browser_main.cc |
index 14cb700ed9186501e89004acd6445e982396158c..36a98802b298811f6722a697e4bb8cc97e2b3752 100644 |
--- a/chrome/browser/chrome_browser_main.cc |
+++ b/chrome/browser/chrome_browser_main.cc |
@@ -1436,10 +1436,15 @@ int ChromeBrowserMainParts::PreMainMessageLoopRunInternal() { |
// Now that the file thread exists we can record our stats. |
chromeos::BootTimesLoader::Get()->RecordChromeMainStats(); |
+#if defined(TOOLKIT_USES_GTK) |
// Read locale-specific GTK resource information. |
std::string gtkrc = l10n_util::GetStringUTF8(IDS_LOCALE_GTKRC); |
if (!gtkrc.empty()) |
gtk_rc_parse_string(gtkrc.c_str()); |
+#else |
+ // TODO(saintlou): Need to provide an Aura equivalent. |
+ NOTIMPLEMENTED(); |
+#endif |
// Trigger prefetching of ownership status. |
chromeos::OwnershipService::GetSharedInstance()->Prewarm(); |