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

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

Issue 10829074: Browser Plugin: Rename BrowserPluginMsg/BrowserPluginHostMsg to OldBrowserPluginMsg/OldBrowserPlugi… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 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 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/bind.h" 12 #include "base/bind.h"
13 #include "base/bind_helpers.h" 13 #include "base/bind_helpers.h"
14 #include "base/command_line.h" 14 #include "base/command_line.h"
15 #include "base/compiler_specific.h" 15 #include "base/compiler_specific.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/metrics/histogram.h" 18 #include "base/metrics/histogram.h"
19 #include "base/path_service.h" 19 #include "base/path_service.h"
20 #include "base/process_util.h" 20 #include "base/process_util.h"
21 #include "base/string_number_conversions.h" 21 #include "base/string_number_conversions.h"
22 #include "base/string_piece.h" 22 #include "base/string_piece.h"
23 #include "base/string_split.h" 23 #include "base/string_split.h"
24 #include "base/string_util.h" 24 #include "base/string_util.h"
25 #include "base/sys_string_conversions.h" 25 #include "base/sys_string_conversions.h"
26 #include "base/time.h" 26 #include "base/time.h"
27 #include "base/utf_string_conversions.h" 27 #include "base/utf_string_conversions.h"
28 #include "content/common/appcache/appcache_dispatcher.h" 28 #include "content/common/appcache/appcache_dispatcher.h"
29 #include "content/common/browser_plugin_messages.h" 29 #include "content/common/old_browser_plugin_messages.h"
jam 2012/07/30 15:27:44 ditto
Fady Samuel 2012/07/30 22:11:50 Done.
30 #include "content/common/child_thread.h" 30 #include "content/common/child_thread.h"
31 #include "content/common/clipboard_messages.h" 31 #include "content/common/clipboard_messages.h"
32 #include "content/common/database_messages.h" 32 #include "content/common/database_messages.h"
33 #include "content/common/drag_messages.h" 33 #include "content/common/drag_messages.h"
34 #include "content/common/fileapi/file_system_dispatcher.h" 34 #include "content/common/fileapi/file_system_dispatcher.h"
35 #include "content/common/fileapi/webfilesystem_callback_dispatcher.h" 35 #include "content/common/fileapi/webfilesystem_callback_dispatcher.h"
36 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h" 36 #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h"
37 #include "content/common/intents_messages.h" 37 #include "content/common/intents_messages.h"
38 #include "content/common/java_bridge_messages.h" 38 #include "content/common/java_bridge_messages.h"
39 #include "content/common/pepper_messages.h" 39 #include "content/common/pepper_messages.h"
(...skipping 5675 matching lines...) Expand 10 before | Expand all | Expand 10 after
5715 bool RenderViewImpl::WebWidgetHandlesCompositorScheduling() const { 5715 bool RenderViewImpl::WebWidgetHandlesCompositorScheduling() const {
5716 return !!RenderThreadImpl::current()->compositor_thread(); 5716 return !!RenderThreadImpl::current()->compositor_thread();
5717 } 5717 }
5718 5718
5719 void RenderViewImpl::OnJavaBridgeInit() { 5719 void RenderViewImpl::OnJavaBridgeInit() {
5720 DCHECK(!java_bridge_dispatcher_); 5720 DCHECK(!java_bridge_dispatcher_);
5721 #if defined(ENABLE_JAVA_BRIDGE) 5721 #if defined(ENABLE_JAVA_BRIDGE)
5722 java_bridge_dispatcher_ = new JavaBridgeDispatcher(this); 5722 java_bridge_dispatcher_ = new JavaBridgeDispatcher(this);
5723 #endif 5723 #endif
5724 } 5724 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698