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

Side by Side Diff: chrome/renderer/render_view.cc

Issue 6683034: Move database files from chrome\commmon to content\common, in preparation for... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 9 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 | « chrome/renderer/render_thread.cc ('k') | chrome/renderer/renderer_webkitclient_impl.cc » ('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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "chrome/renderer/render_view.h" 5 #include "chrome/renderer/render_view.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <cmath> 8 #include <cmath>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 12 matching lines...) Expand all
23 #include "base/utf_string_conversions.h" 23 #include "base/utf_string_conversions.h"
24 #include "build/build_config.h" 24 #include "build/build_config.h"
25 #include "chrome/common/appcache/appcache_dispatcher.h" 25 #include "chrome/common/appcache/appcache_dispatcher.h"
26 #include "chrome/common/autofill_messages.h" 26 #include "chrome/common/autofill_messages.h"
27 #include "chrome/common/bindings_policy.h" 27 #include "chrome/common/bindings_policy.h"
28 #include "chrome/common/child_process_logging.h" 28 #include "chrome/common/child_process_logging.h"
29 #include "chrome/common/chrome_constants.h" 29 #include "chrome/common/chrome_constants.h"
30 #include "chrome/common/chrome_paths.h" 30 #include "chrome/common/chrome_paths.h"
31 #include "chrome/common/chrome_switches.h" 31 #include "chrome/common/chrome_switches.h"
32 #include "chrome/common/clipboard_messages.h" 32 #include "chrome/common/clipboard_messages.h"
33 #include "chrome/common/database_messages.h"
34 #include "chrome/common/extensions/extension.h" 33 #include "chrome/common/extensions/extension.h"
35 #include "chrome/common/extensions/extension_constants.h" 34 #include "chrome/common/extensions/extension_constants.h"
36 #include "chrome/common/extensions/extension_set.h" 35 #include "chrome/common/extensions/extension_set.h"
37 #include "chrome/common/json_value_serializer.h" 36 #include "chrome/common/json_value_serializer.h"
38 #include "chrome/common/jstemplate_builder.h" 37 #include "chrome/common/jstemplate_builder.h"
39 #include "chrome/common/page_zoom.h" 38 #include "chrome/common/page_zoom.h"
40 #include "chrome/common/pepper_messages.h" 39 #include "chrome/common/pepper_messages.h"
41 #include "chrome/common/pepper_plugin_registry.h" 40 #include "chrome/common/pepper_plugin_registry.h"
42 #include "chrome/common/render_messages.h" 41 #include "chrome/common/render_messages.h"
43 #include "chrome/common/render_messages_params.h" 42 #include "chrome/common/render_messages_params.h"
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 #include "chrome/renderer/translate_helper.h" 94 #include "chrome/renderer/translate_helper.h"
96 #include "chrome/renderer/user_script_idle_scheduler.h" 95 #include "chrome/renderer/user_script_idle_scheduler.h"
97 #include "chrome/renderer/user_script_slave.h" 96 #include "chrome/renderer/user_script_slave.h"
98 #include "chrome/renderer/visitedlink_slave.h" 97 #include "chrome/renderer/visitedlink_slave.h"
99 #include "chrome/renderer/web_ui_bindings.h" 98 #include "chrome/renderer/web_ui_bindings.h"
100 #include "chrome/renderer/webgraphicscontext3d_command_buffer_impl.h" 99 #include "chrome/renderer/webgraphicscontext3d_command_buffer_impl.h"
101 #include "chrome/renderer/webplugin_delegate_proxy.h" 100 #include "chrome/renderer/webplugin_delegate_proxy.h"
102 #include "chrome/renderer/websharedworker_proxy.h" 101 #include "chrome/renderer/websharedworker_proxy.h"
103 #include "chrome/renderer/webworker_proxy.h" 102 #include "chrome/renderer/webworker_proxy.h"
104 #include "content/common/content_constants.h" 103 #include "content/common/content_constants.h"
104 #include "content/common/database_messages.h"
105 #include "content/common/file_system/file_system_dispatcher.h" 105 #include "content/common/file_system/file_system_dispatcher.h"
106 #include "content/common/file_system/webfilesystem_callback_dispatcher.h" 106 #include "content/common/file_system/webfilesystem_callback_dispatcher.h"
107 #include "content/common/notification_service.h" 107 #include "content/common/notification_service.h"
108 #include "grit/generated_resources.h" 108 #include "grit/generated_resources.h"
109 #include "grit/renderer_resources.h" 109 #include "grit/renderer_resources.h"
110 #include "media/base/filter_collection.h" 110 #include "media/base/filter_collection.h"
111 #include "media/base/media_switches.h" 111 #include "media/base/media_switches.h"
112 #include "media/base/message_loop_factory_impl.h" 112 #include "media/base/message_loop_factory_impl.h"
113 #include "net/base/data_url.h" 113 #include "net/base/data_url.h"
114 #include "net/base/escape.h" 114 #include "net/base/escape.h"
(...skipping 5490 matching lines...) Expand 10 before | Expand all | Expand 10 after
5605 const webkit_glue::CustomContextMenuContext& custom_context) { 5605 const webkit_glue::CustomContextMenuContext& custom_context) {
5606 if (custom_context.is_pepper_menu) 5606 if (custom_context.is_pepper_menu)
5607 pepper_delegate_.OnContextMenuClosed(custom_context); 5607 pepper_delegate_.OnContextMenuClosed(custom_context);
5608 else 5608 else
5609 context_menu_node_.reset(); 5609 context_menu_node_.reset();
5610 } 5610 }
5611 5611
5612 void RenderView::OnNetworkStateChanged(bool online) { 5612 void RenderView::OnNetworkStateChanged(bool online) {
5613 WebNetworkStateNotifier::setOnLine(online); 5613 WebNetworkStateNotifier::setOnLine(online);
5614 } 5614 }
OLDNEW
« no previous file with comments | « chrome/renderer/render_thread.cc ('k') | chrome/renderer/renderer_webkitclient_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698