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

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

Issue 2398783002: Rename a bunch of Mojo Application stuff to reference Services. (Closed)
Patch Set: . Created 4 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
« no previous file with comments | « content/renderer/render_frame_impl.h ('k') | content/renderer/render_thread_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 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 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 #include "content/common/view_messages.h" 68 #include "content/common/view_messages.h"
69 #include "content/public/common/bindings_policy.h" 69 #include "content/public/common/bindings_policy.h"
70 #include "content/public/common/browser_side_navigation_policy.h" 70 #include "content/public/common/browser_side_navigation_policy.h"
71 #include "content/public/common/content_constants.h" 71 #include "content/public/common/content_constants.h"
72 #include "content/public/common/content_features.h" 72 #include "content/public/common/content_features.h"
73 #include "content/public/common/content_switches.h" 73 #include "content/public/common/content_switches.h"
74 #include "content/public/common/context_menu_params.h" 74 #include "content/public/common/context_menu_params.h"
75 #include "content/public/common/file_chooser_file_info.h" 75 #include "content/public/common/file_chooser_file_info.h"
76 #include "content/public/common/file_chooser_params.h" 76 #include "content/public/common/file_chooser_params.h"
77 #include "content/public/common/isolated_world_ids.h" 77 #include "content/public/common/isolated_world_ids.h"
78 #include "content/public/common/mojo_shell_connection.h"
79 #include "content/public/common/page_state.h" 78 #include "content/public/common/page_state.h"
80 #include "content/public/common/resource_response.h" 79 #include "content/public/common/resource_response.h"
80 #include "content/public/common/service_manager_connection.h"
81 #include "content/public/common/url_constants.h" 81 #include "content/public/common/url_constants.h"
82 #include "content/public/common/url_utils.h" 82 #include "content/public/common/url_utils.h"
83 #include "content/public/renderer/browser_plugin_delegate.h" 83 #include "content/public/renderer/browser_plugin_delegate.h"
84 #include "content/public/renderer/content_renderer_client.h" 84 #include "content/public/renderer/content_renderer_client.h"
85 #include "content/public/renderer/context_menu_client.h" 85 #include "content/public/renderer/context_menu_client.h"
86 #include "content/public/renderer/document_state.h" 86 #include "content/public/renderer/document_state.h"
87 #include "content/public/renderer/navigation_state.h" 87 #include "content/public/renderer/navigation_state.h"
88 #include "content/public/renderer/render_frame_observer.h" 88 #include "content/public/renderer/render_frame_observer.h"
89 #include "content/public/renderer/renderer_ppapi_host.h" 89 #include "content/public/renderer/renderer_ppapi_host.h"
90 #include "content/renderer/accessibility/render_accessibility_impl.h" 90 #include "content/renderer/accessibility/render_accessibility_impl.h"
(...skipping 6400 matching lines...) Expand 10 before | Expand all | Expand 10 after
6491 // event target. Potentially a Pepper plugin will receive the event. 6491 // event target. Potentially a Pepper plugin will receive the event.
6492 // In order to tell whether a plugin gets the last mouse event and which it 6492 // In order to tell whether a plugin gets the last mouse event and which it
6493 // is, we set |pepper_last_mouse_event_target_| to null here. If a plugin gets 6493 // is, we set |pepper_last_mouse_event_target_| to null here. If a plugin gets
6494 // the event, it will notify us via DidReceiveMouseEvent() and set itself as 6494 // the event, it will notify us via DidReceiveMouseEvent() and set itself as
6495 // |pepper_last_mouse_event_target_|. 6495 // |pepper_last_mouse_event_target_|.
6496 pepper_last_mouse_event_target_ = nullptr; 6496 pepper_last_mouse_event_target_ = nullptr;
6497 #endif 6497 #endif
6498 } 6498 }
6499 6499
6500 } // namespace content 6500 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/render_frame_impl.h ('k') | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698