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

Side by Side Diff: content/renderer/render_view_impl.cc

Issue 18154002: Use a direct include of time headers in content/, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | content/renderer/render_widget.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/renderer/render_view_impl.h" 5 #include "content/renderer/render_view_impl.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <cmath> 8 #include <cmath>
9 9
10 #include "base/auto_reset.h" 10 #include "base/auto_reset.h"
(...skipping 10 matching lines...) Expand all
21 #include "base/message_loop/message_loop_proxy.h" 21 #include "base/message_loop/message_loop_proxy.h"
22 #include "base/metrics/histogram.h" 22 #include "base/metrics/histogram.h"
23 #include "base/path_service.h" 23 #include "base/path_service.h"
24 #include "base/process_util.h" 24 #include "base/process_util.h"
25 #include "base/strings/string_number_conversions.h" 25 #include "base/strings/string_number_conversions.h"
26 #include "base/strings/string_piece.h" 26 #include "base/strings/string_piece.h"
27 #include "base/strings/string_split.h" 27 #include "base/strings/string_split.h"
28 #include "base/strings/string_util.h" 28 #include "base/strings/string_util.h"
29 #include "base/strings/sys_string_conversions.h" 29 #include "base/strings/sys_string_conversions.h"
30 #include "base/strings/utf_string_conversions.h" 30 #include "base/strings/utf_string_conversions.h"
31 #include "base/time.h" 31 #include "base/time/time.h"
32 #include "content/child/appcache_dispatcher.h" 32 #include "content/child/appcache_dispatcher.h"
33 #include "content/child/child_thread.h" 33 #include "content/child/child_thread.h"
34 #include "content/child/fileapi/file_system_dispatcher.h" 34 #include "content/child/fileapi/file_system_dispatcher.h"
35 #include "content/child/fileapi/webfilesystem_callback_adapters.h" 35 #include "content/child/fileapi/webfilesystem_callback_adapters.h"
36 #include "content/child/quota_dispatcher.h" 36 #include "content/child/quota_dispatcher.h"
37 #include "content/child/request_extra_data.h" 37 #include "content/child/request_extra_data.h"
38 #include "content/child/webmessageportchannel_impl.h" 38 #include "content/child/webmessageportchannel_impl.h"
39 #include "content/common/clipboard_messages.h" 39 #include "content/common/clipboard_messages.h"
40 #include "content/common/database_messages.h" 40 #include "content/common/database_messages.h"
41 #include "content/common/drag_messages.h" 41 #include "content/common/drag_messages.h"
(...skipping 6723 matching lines...) Expand 10 before | Expand all | Expand 10 after
6765 WebURL url = icon_urls[i].iconURL(); 6765 WebURL url = icon_urls[i].iconURL();
6766 if (!url.isEmpty()) 6766 if (!url.isEmpty())
6767 urls.push_back(FaviconURL(url, 6767 urls.push_back(FaviconURL(url,
6768 ToFaviconType(icon_urls[i].iconType()))); 6768 ToFaviconType(icon_urls[i].iconType())));
6769 } 6769 }
6770 SendUpdateFaviconURL(urls); 6770 SendUpdateFaviconURL(urls);
6771 } 6771 }
6772 6772
6773 6773
6774 } // namespace content 6774 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | content/renderer/render_widget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698