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

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

Issue 8100013: Start off the Content API by moving content::ContentRendererClient to content\public\renderer.BU... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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_thread.cc ('k') | content/renderer/renderer_glue.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 "content/renderer/render_view.h" 5 #include "content/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 23 matching lines...) Expand all
34 #include "content/common/file_system/webfilesystem_callback_dispatcher.h" 34 #include "content/common/file_system/webfilesystem_callback_dispatcher.h"
35 #include "content/common/json_value_serializer.h" 35 #include "content/common/json_value_serializer.h"
36 #include "content/common/notification_service.h" 36 #include "content/common/notification_service.h"
37 #include "content/common/pepper_messages.h" 37 #include "content/common/pepper_messages.h"
38 #include "content/common/pepper_plugin_registry.h" 38 #include "content/common/pepper_plugin_registry.h"
39 #include "content/common/quota_dispatcher.h" 39 #include "content/common/quota_dispatcher.h"
40 #include "content/common/renderer_preferences.h" 40 #include "content/common/renderer_preferences.h"
41 #include "content/common/request_extra_data.h" 41 #include "content/common/request_extra_data.h"
42 #include "content/common/url_constants.h" 42 #include "content/common/url_constants.h"
43 #include "content/common/view_messages.h" 43 #include "content/common/view_messages.h"
44 #include "content/renderer/content_renderer_client.h" 44 #include "content/public/renderer/content_renderer_client.h"
45 #include "content/renderer/device_orientation_dispatcher.h" 45 #include "content/renderer/device_orientation_dispatcher.h"
46 #include "content/renderer/devtools_agent.h" 46 #include "content/renderer/devtools_agent.h"
47 #include "content/renderer/external_popup_menu.h" 47 #include "content/renderer/external_popup_menu.h"
48 #include "content/renderer/geolocation_dispatcher.h" 48 #include "content/renderer/geolocation_dispatcher.h"
49 #include "content/renderer/gpu/webgraphicscontext3d_command_buffer_impl.h" 49 #include "content/renderer/gpu/webgraphicscontext3d_command_buffer_impl.h"
50 #include "content/renderer/intents_dispatcher.h" 50 #include "content/renderer/intents_dispatcher.h"
51 #include "content/renderer/load_progress_tracker.h" 51 #include "content/renderer/load_progress_tracker.h"
52 #include "content/renderer/media/audio_message_filter.h" 52 #include "content/renderer/media/audio_message_filter.h"
53 #include "content/renderer/media/audio_renderer_impl.h" 53 #include "content/renderer/media/audio_renderer_impl.h"
54 #include "content/renderer/media/media_stream_impl.h" 54 #include "content/renderer/media/media_stream_impl.h"
(...skipping 4342 matching lines...) Expand 10 before | Expand all | Expand 10 after
4397 } 4397 }
4398 4398
4399 void RenderView::OnLockMouseACK(bool succeeded) { 4399 void RenderView::OnLockMouseACK(bool succeeded) {
4400 pepper_delegate_.OnLockMouseACK(succeeded); 4400 pepper_delegate_.OnLockMouseACK(succeeded);
4401 } 4401 }
4402 4402
4403 void RenderView::OnMouseLockLost() { 4403 void RenderView::OnMouseLockLost() {
4404 pepper_delegate_.OnMouseLockLost(); 4404 pepper_delegate_.OnMouseLockLost();
4405 } 4405 }
4406 4406
OLDNEW
« no previous file with comments | « content/renderer/render_thread.cc ('k') | content/renderer/renderer_glue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698