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

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

Issue 16328003: Move a bunch of child-only code from content/common to content/child (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: deps for single process Created 7 years, 6 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
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"
11 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/bind_helpers.h" 12 #include "base/bind_helpers.h"
13 #include "base/command_line.h" 13 #include "base/command_line.h"
14 #include "base/compiler_specific.h" 14 #include "base/compiler_specific.h"
15 #include "base/debug/trace_event.h" 15 #include "base/debug/trace_event.h"
16 #include "base/json/json_writer.h" 16 #include "base/json/json_writer.h"
17 #include "base/lazy_instance.h" 17 #include "base/lazy_instance.h"
18 #include "base/memory/scoped_ptr.h" 18 #include "base/memory/scoped_ptr.h"
19 #include "base/message_loop_proxy.h" 19 #include "base/message_loop_proxy.h"
20 #include "base/metrics/histogram.h" 20 #include "base/metrics/histogram.h"
21 #include "base/path_service.h" 21 #include "base/path_service.h"
22 #include "base/process_util.h" 22 #include "base/process_util.h"
23 #include "base/string_number_conversions.h" 23 #include "base/string_number_conversions.h"
24 #include "base/string_util.h" 24 #include "base/string_util.h"
25 #include "base/strings/string_piece.h" 25 #include "base/strings/string_piece.h"
26 #include "base/strings/string_split.h" 26 #include "base/strings/string_split.h"
27 #include "base/strings/sys_string_conversions.h" 27 #include "base/strings/sys_string_conversions.h"
28 #include "base/time.h" 28 #include "base/time.h"
29 #include "base/utf_string_conversions.h" 29 #include "base/utf_string_conversions.h"
30 #include "content/child/child_thread.h"
31 #include "content/child/fileapi/file_system_dispatcher.h"
30 #include "content/child/fileapi/webfilesystem_callback_adapters.h" 32 #include "content/child/fileapi/webfilesystem_callback_adapters.h"
33 #include "content/child/quota_dispatcher.h"
34 #include "content/child/webmessageportchannel_impl.h"
31 #include "content/common/appcache/appcache_dispatcher.h" 35 #include "content/common/appcache/appcache_dispatcher.h"
32 #include "content/common/child_thread.h"
33 #include "content/common/clipboard_messages.h" 36 #include "content/common/clipboard_messages.h"
34 #include "content/common/database_messages.h" 37 #include "content/common/database_messages.h"
35 #include "content/common/drag_messages.h" 38 #include "content/common/drag_messages.h"
36 #include "content/common/fileapi/file_system_dispatcher.h"
37 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" 39 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h"
38 #include "content/common/input_messages.h" 40 #include "content/common/input_messages.h"
39 #include "content/common/java_bridge_messages.h" 41 #include "content/common/java_bridge_messages.h"
40 #include "content/common/pepper_messages.h" 42 #include "content/common/pepper_messages.h"
41 #include "content/common/pepper_plugin_registry.h" 43 #include "content/common/pepper_plugin_registry.h"
42 #include "content/common/quota_dispatcher.h"
43 #include "content/common/request_extra_data.h" 44 #include "content/common/request_extra_data.h"
44 #include "content/common/socket_stream_handle_data.h" 45 #include "content/common/socket_stream_handle_data.h"
45 #include "content/common/ssl_status_serialization.h" 46 #include "content/common/ssl_status_serialization.h"
46 #include "content/common/view_messages.h" 47 #include "content/common/view_messages.h"
47 #include "content/common/webmessageportchannel_impl.h"
48 #include "content/public/common/bindings_policy.h" 48 #include "content/public/common/bindings_policy.h"
49 #include "content/public/common/content_client.h" 49 #include "content/public/common/content_client.h"
50 #include "content/public/common/content_constants.h" 50 #include "content/public/common/content_constants.h"
51 #include "content/public/common/content_switches.h" 51 #include "content/public/common/content_switches.h"
52 #include "content/public/common/context_menu_params.h" 52 #include "content/public/common/context_menu_params.h"
53 #include "content/public/common/favicon_url.h" 53 #include "content/public/common/favicon_url.h"
54 #include "content/public/common/file_chooser_params.h" 54 #include "content/public/common/file_chooser_params.h"
55 #include "content/public/common/ssl_status.h" 55 #include "content/public/common/ssl_status.h"
56 #include "content/public/common/three_d_api_types.h" 56 #include "content/public/common/three_d_api_types.h"
57 #include "content/public/common/url_constants.h" 57 #include "content/public/common/url_constants.h"
(...skipping 6623 matching lines...) Expand 10 before | Expand all | Expand 10 after
6681 WebURL url = icon_urls[i].iconURL(); 6681 WebURL url = icon_urls[i].iconURL();
6682 if (!url.isEmpty()) 6682 if (!url.isEmpty())
6683 urls.push_back(FaviconURL(url, 6683 urls.push_back(FaviconURL(url,
6684 ToFaviconType(icon_urls[i].iconType()))); 6684 ToFaviconType(icon_urls[i].iconType())));
6685 } 6685 }
6686 SendUpdateFaviconURL(urls); 6686 SendUpdateFaviconURL(urls);
6687 } 6687 }
6688 6688
6689 6689
6690 } // namespace content 6690 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698