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

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

Issue 246163006: Move history serialization from contet/public/renderer/ to content/renderer/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix braces Created 6 years, 8 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/history_serialization.cc ('k') | content/renderer/render_view_browsertest.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_frame_impl.h" 5 #include "content/renderer/render_frame_impl.h"
6 6
7 #include <map> 7 #include <map>
8 #include <string> 8 #include <string>
9 9
10 #include "base/auto_reset.h" 10 #include "base/auto_reset.h"
(...skipping 23 matching lines...) Expand all
34 #include "content/common/view_messages.h" 34 #include "content/common/view_messages.h"
35 #include "content/public/common/bindings_policy.h" 35 #include "content/public/common/bindings_policy.h"
36 #include "content/public/common/content_constants.h" 36 #include "content/public/common/content_constants.h"
37 #include "content/public/common/content_switches.h" 37 #include "content/public/common/content_switches.h"
38 #include "content/public/common/context_menu_params.h" 38 #include "content/public/common/context_menu_params.h"
39 #include "content/public/common/url_constants.h" 39 #include "content/public/common/url_constants.h"
40 #include "content/public/common/url_utils.h" 40 #include "content/public/common/url_utils.h"
41 #include "content/public/renderer/content_renderer_client.h" 41 #include "content/public/renderer/content_renderer_client.h"
42 #include "content/public/renderer/context_menu_client.h" 42 #include "content/public/renderer/context_menu_client.h"
43 #include "content/public/renderer/document_state.h" 43 #include "content/public/renderer/document_state.h"
44 #include "content/public/renderer/history_item_serialization.h"
45 #include "content/public/renderer/navigation_state.h" 44 #include "content/public/renderer/navigation_state.h"
46 #include "content/public/renderer/render_frame_observer.h" 45 #include "content/public/renderer/render_frame_observer.h"
47 #include "content/renderer/accessibility/renderer_accessibility.h" 46 #include "content/renderer/accessibility/renderer_accessibility.h"
48 #include "content/renderer/browser_plugin/browser_plugin.h" 47 #include "content/renderer/browser_plugin/browser_plugin.h"
49 #include "content/renderer/browser_plugin/browser_plugin_manager.h" 48 #include "content/renderer/browser_plugin/browser_plugin_manager.h"
50 #include "content/renderer/child_frame_compositing_helper.h" 49 #include "content/renderer/child_frame_compositing_helper.h"
51 #include "content/renderer/context_menu_params_builder.h" 50 #include "content/renderer/context_menu_params_builder.h"
52 #include "content/renderer/dom_automation_controller.h" 51 #include "content/renderer/dom_automation_controller.h"
53 #include "content/renderer/history_controller.h" 52 #include "content/renderer/history_controller.h"
53 #include "content/renderer/history_serialization.h"
54 #include "content/renderer/image_loading_helper.h" 54 #include "content/renderer/image_loading_helper.h"
55 #include "content/renderer/ime_event_guard.h" 55 #include "content/renderer/ime_event_guard.h"
56 #include "content/renderer/internal_document_state_data.h" 56 #include "content/renderer/internal_document_state_data.h"
57 #include "content/renderer/java/java_bridge_dispatcher.h" 57 #include "content/renderer/java/java_bridge_dispatcher.h"
58 #include "content/renderer/media/webcontentdecryptionmodule_impl.h" 58 #include "content/renderer/media/webcontentdecryptionmodule_impl.h"
59 #include "content/renderer/notification_provider.h" 59 #include "content/renderer/notification_provider.h"
60 #include "content/renderer/npapi/plugin_channel_host.h" 60 #include "content/renderer/npapi/plugin_channel_host.h"
61 #include "content/renderer/render_process.h" 61 #include "content/renderer/render_process.h"
62 #include "content/renderer/render_thread_impl.h" 62 #include "content/renderer/render_thread_impl.h"
63 #include "content/renderer/render_view_impl.h" 63 #include "content/renderer/render_view_impl.h"
(...skipping 3134 matching lines...) Expand 10 before | Expand all | Expand 10 after
3198 selection_text_offset_ = offset; 3198 selection_text_offset_ = offset;
3199 selection_range_ = range; 3199 selection_range_ = range;
3200 // This IPC is dispatched by RenderWidetHost, so use its routing ID. 3200 // This IPC is dispatched by RenderWidetHost, so use its routing ID.
3201 Send(new ViewHostMsg_SelectionChanged( 3201 Send(new ViewHostMsg_SelectionChanged(
3202 GetRenderWidget()->routing_id(), text, offset, range)); 3202 GetRenderWidget()->routing_id(), text, offset, range));
3203 } 3203 }
3204 GetRenderWidget()->UpdateSelectionBounds(); 3204 GetRenderWidget()->UpdateSelectionBounds();
3205 } 3205 }
3206 3206
3207 } // namespace content 3207 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/history_serialization.cc ('k') | content/renderer/render_view_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698