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

Unified Diff: webkit/tools/test_shell/test_shell_gtk.cc

Issue 164537: Renames the function CreateTemporaryFilename to CreateTemporaryFile and track... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: CommandLine fix Created 11 years, 4 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 | « webkit/glue/plugins/plugin_stream_posix.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/test_shell/test_shell_gtk.cc
===================================================================
--- webkit/tools/test_shell/test_shell_gtk.cc (revision 23574)
+++ webkit/tools/test_shell/test_shell_gtk.cc (working copy)
@@ -184,7 +184,7 @@
StringPiece font_config_xml;
g_resource_data_pack->Get(IDR_LINUX_FONT_CONFIG, &font_config_xml);
FilePath fontconfig_path;
- if (!file_util::CreateTemporaryFileName(&fontconfig_path)) {
+ if (!file_util::CreateTemporaryFile(&fontconfig_path)) {
LOG(FATAL) << "failed to create temp font config file";
}
if (-1 == file_util::WriteFile(fontconfig_path.ToWStringHack(),
@@ -273,7 +273,7 @@
StringPiece ahem_font;
g_resource_data_pack->Get(IDR_AHEM_FONT, &ahem_font);
g_ahem_path = new FilePath;
- if (!file_util::CreateTemporaryFileName(g_ahem_path)) {
+ if (!file_util::CreateTemporaryFile(g_ahem_path)) {
LOG(FATAL) << "failed to create temp ahem font";
}
if (-1 == file_util::WriteFile(g_ahem_path->ToWStringHack(), ahem_font.data(),
« no previous file with comments | « webkit/glue/plugins/plugin_stream_posix.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698