OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "extensions/browser/guest_view/guest_view_base.h" | 5 #include "extensions/browser/guest_view/guest_view_base.h" |
6 | 6 |
7 #include "base/i18n/rtl.h" | |
Charlie Reis
2014/08/26 16:37:42
Is this leftover?
Fady Samuel
2014/08/26 19:02:45
Removed.
| |
7 #include "base/lazy_instance.h" | 8 #include "base/lazy_instance.h" |
8 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
9 #include "content/public/browser/render_frame_host.h" | 10 #include "content/public/browser/render_frame_host.h" |
10 #include "content/public/browser/render_process_host.h" | 11 #include "content/public/browser/render_process_host.h" |
11 #include "content/public/browser/render_view_host.h" | 12 #include "content/public/browser/render_view_host.h" |
12 #include "content/public/browser/web_contents.h" | 13 #include "content/public/browser/web_contents.h" |
13 #include "content/public/common/url_constants.h" | 14 #include "content/public/common/url_constants.h" |
14 #include "extensions/browser/api/extensions_api_client.h" | 15 #include "extensions/browser/api/extensions_api_client.h" |
15 #include "extensions/browser/event_router.h" | 16 #include "extensions/browser/event_router.h" |
16 #include "extensions/browser/extension_registry.h" | 17 #include "extensions/browser/extension_registry.h" |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
443 } | 444 } |
444 | 445 |
445 // static | 446 // static |
446 void GuestViewBase::RegisterGuestViewTypes() { | 447 void GuestViewBase::RegisterGuestViewTypes() { |
447 AppViewGuest::Register(); | 448 AppViewGuest::Register(); |
448 WebViewGuest::Register(); | 449 WebViewGuest::Register(); |
449 ExtensionsAPIClient::Get()->RegisterGuestViewTypes(); | 450 ExtensionsAPIClient::Get()->RegisterGuestViewTypes(); |
450 } | 451 } |
451 | 452 |
452 } // namespace extensions | 453 } // namespace extensions |
OLD | NEW |