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

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

Issue 651593002: Remove RendererAccessibilityFocusOnly. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert patch set #4 Created 6 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_view_browsertest.cc ('k') | no next file » | 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) 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 9
10 #include "base/auto_reset.h" 10 #include "base/auto_reset.h"
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 #include "content/public/common/ssl_status.h" 64 #include "content/public/common/ssl_status.h"
65 #include "content/public/common/three_d_api_types.h" 65 #include "content/public/common/three_d_api_types.h"
66 #include "content/public/common/url_constants.h" 66 #include "content/public/common/url_constants.h"
67 #include "content/public/common/url_utils.h" 67 #include "content/public/common/url_utils.h"
68 #include "content/public/common/web_preferences.h" 68 #include "content/public/common/web_preferences.h"
69 #include "content/public/renderer/content_renderer_client.h" 69 #include "content/public/renderer/content_renderer_client.h"
70 #include "content/public/renderer/document_state.h" 70 #include "content/public/renderer/document_state.h"
71 #include "content/public/renderer/navigation_state.h" 71 #include "content/public/renderer/navigation_state.h"
72 #include "content/public/renderer/render_view_observer.h" 72 #include "content/public/renderer/render_view_observer.h"
73 #include "content/public/renderer/render_view_visitor.h" 73 #include "content/public/renderer/render_view_visitor.h"
74 #include "content/renderer/accessibility/renderer_accessibility.h"
75 #include "content/renderer/accessibility/renderer_accessibility_complete.h"
76 #include "content/renderer/accessibility/renderer_accessibility_focus_only.h"
77 #include "content/renderer/browser_plugin/browser_plugin.h" 74 #include "content/renderer/browser_plugin/browser_plugin.h"
78 #include "content/renderer/browser_plugin/browser_plugin_manager.h" 75 #include "content/renderer/browser_plugin/browser_plugin_manager.h"
79 #include "content/renderer/devtools/devtools_agent.h" 76 #include "content/renderer/devtools/devtools_agent.h"
80 #include "content/renderer/disambiguation_popup_helper.h" 77 #include "content/renderer/disambiguation_popup_helper.h"
81 #include "content/renderer/dom_storage/webstoragenamespace_impl.h" 78 #include "content/renderer/dom_storage/webstoragenamespace_impl.h"
82 #include "content/renderer/drop_data_builder.h" 79 #include "content/renderer/drop_data_builder.h"
83 #include "content/renderer/gpu/render_widget_compositor.h" 80 #include "content/renderer/gpu/render_widget_compositor.h"
84 #include "content/renderer/history_controller.h" 81 #include "content/renderer/history_controller.h"
85 #include "content/renderer/history_serialization.h" 82 #include "content/renderer/history_serialization.h"
86 #include "content/renderer/idle_user_detector.h" 83 #include "content/renderer/idle_user_detector.h"
(...skipping 4103 matching lines...) Expand 10 before | Expand all | Expand 10 after
4190 std::vector<gfx::Size> sizes; 4187 std::vector<gfx::Size> sizes;
4191 ConvertToFaviconSizes(icon_urls[i].sizes(), &sizes); 4188 ConvertToFaviconSizes(icon_urls[i].sizes(), &sizes);
4192 if (!url.isEmpty()) 4189 if (!url.isEmpty())
4193 urls.push_back( 4190 urls.push_back(
4194 FaviconURL(url, ToFaviconType(icon_urls[i].iconType()), sizes)); 4191 FaviconURL(url, ToFaviconType(icon_urls[i].iconType()), sizes));
4195 } 4192 }
4196 SendUpdateFaviconURL(urls); 4193 SendUpdateFaviconURL(urls);
4197 } 4194 }
4198 4195
4199 } // namespace content 4196 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/render_view_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698