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

Side by Side Diff: android_webview/renderer/aw_content_renderer_client.cc

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase 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 | « android_webview/renderer/DEPS ('k') | ash/BUILD.gn » ('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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 "android_webview/renderer/aw_content_renderer_client.h" 5 #include "android_webview/renderer/aw_content_renderer_client.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "android_webview/common/aw_resource.h" 9 #include "android_webview/common/aw_resource.h"
10 #include "android_webview/common/aw_switches.h" 10 #include "android_webview/common/aw_switches.h"
(...skipping 20 matching lines...) Expand all
31 #include "components/visitedlink/renderer/visitedlink_slave.h" 31 #include "components/visitedlink/renderer/visitedlink_slave.h"
32 #include "components/web_restrictions/interfaces/web_restrictions.mojom.h" 32 #include "components/web_restrictions/interfaces/web_restrictions.mojom.h"
33 #include "content/public/common/url_constants.h" 33 #include "content/public/common/url_constants.h"
34 #include "content/public/renderer/document_state.h" 34 #include "content/public/renderer/document_state.h"
35 #include "content/public/renderer/navigation_state.h" 35 #include "content/public/renderer/navigation_state.h"
36 #include "content/public/renderer/render_frame.h" 36 #include "content/public/renderer/render_frame.h"
37 #include "content/public/renderer/render_thread.h" 37 #include "content/public/renderer/render_thread.h"
38 #include "content/public/renderer/render_view.h" 38 #include "content/public/renderer/render_view.h"
39 #include "net/base/escape.h" 39 #include "net/base/escape.h"
40 #include "net/base/net_errors.h" 40 #include "net/base/net_errors.h"
41 #include "services/shell/public/cpp/interface_provider.h" 41 #include "services/service_manager/public/cpp/interface_provider.h"
42 #include "services/shell/public/cpp/interface_registry.h" 42 #include "services/service_manager/public/cpp/interface_registry.h"
43 #include "third_party/WebKit/public/platform/WebString.h" 43 #include "third_party/WebKit/public/platform/WebString.h"
44 #include "third_party/WebKit/public/platform/WebURL.h" 44 #include "third_party/WebKit/public/platform/WebURL.h"
45 #include "third_party/WebKit/public/platform/WebURLError.h" 45 #include "third_party/WebKit/public/platform/WebURLError.h"
46 #include "third_party/WebKit/public/platform/WebURLRequest.h" 46 #include "third_party/WebKit/public/platform/WebURLRequest.h"
47 #include "third_party/WebKit/public/web/WebFrame.h" 47 #include "third_party/WebKit/public/web/WebFrame.h"
48 #include "third_party/WebKit/public/web/WebNavigationType.h" 48 #include "third_party/WebKit/public/web/WebNavigationType.h"
49 #include "third_party/WebKit/public/web/WebSecurityPolicy.h" 49 #include "third_party/WebKit/public/web/WebSecurityPolicy.h"
50 #include "ui/base/l10n/l10n_util.h" 50 #include "ui/base/l10n/l10n_util.h"
51 #include "ui/base/resource/resource_bundle.h" 51 #include "ui/base/resource/resource_bundle.h"
52 #include "url/gurl.h" 52 #include "url/gurl.h"
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 for (auto* extension : kMediaPlayerExtensions) { 276 for (auto* extension : kMediaPlayerExtensions) {
277 if (base::EndsWith(url.path(), extension, 277 if (base::EndsWith(url.path(), extension,
278 base::CompareCase::INSENSITIVE_ASCII)) { 278 base::CompareCase::INSENSITIVE_ASCII)) {
279 return true; 279 return true;
280 } 280 }
281 } 281 }
282 return false; 282 return false;
283 } 283 }
284 284
285 } // namespace android_webview 285 } // namespace android_webview
OLDNEW
« no previous file with comments | « android_webview/renderer/DEPS ('k') | ash/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698