diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-08 18:28:39 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-08 18:30:31 +0000 |
commit | 4683ff309f1cecd209b775a7f95773eb802f322f (patch) | |
tree | f17203f689adf75ee487fc944abe263ea213ab3a /content/child/fileapi | |
parent | 7ac632d3d954c20f826f915f7bbf9687a3484656 (diff) | |
download | chromium_src-4683ff309f1cecd209b775a7f95773eb802f322f.zip chromium_src-4683ff309f1cecd209b775a7f95773eb802f322f.tar.gz chromium_src-4683ff309f1cecd209b775a7f95773eb802f322f.tar.bz2 |
content: Rename blink_glue.* to file_info_util.*.
Reason: blink_glue.* is too generic for this.
It just contains a single function to convert from base::File::Info to
blink::WebFileInfo. Similar to web_url_request_util.h and
pepper_file_util.h.
BUG=345892
TEST=None
R=avi@chromium.org
Review URL: https://codereview.chromium.org/455623002
Cr-Commit-Position: refs/heads/master@{#288399}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288399 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/child/fileapi')
-rw-r--r-- | content/child/fileapi/webfilesystem_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/child/fileapi/webfilesystem_impl.cc b/content/child/fileapi/webfilesystem_impl.cc index dae9788..e629fdd 100644 --- a/content/child/fileapi/webfilesystem_impl.cc +++ b/content/child/fileapi/webfilesystem_impl.cc @@ -11,8 +11,8 @@ #include "base/strings/utf_string_conversions.h" #include "base/synchronization/waitable_event.h" #include "base/threading/thread_local.h" -#include "content/child/blink_glue.h" #include "content/child/child_thread.h" +#include "content/child/file_info_util.h" #include "content/child/fileapi/file_system_dispatcher.h" #include "content/child/fileapi/webfilewriter_impl.h" #include "content/child/worker_task_runner.h" |