| OLD | NEW |
| 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/browser/web_contents/web_contents_impl.h" | 5 #include "content/browser/web_contents/web_contents_impl.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <cmath> | 9 #include <cmath> |
| 10 #include <utility> | 10 #include <utility> |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 #include "content/browser/web_contents/web_contents_android.h" | 137 #include "content/browser/web_contents/web_contents_android.h" |
| 138 #endif // OS_ANDROID | 138 #endif // OS_ANDROID |
| 139 | 139 |
| 140 #if defined(OS_MACOSX) | 140 #if defined(OS_MACOSX) |
| 141 #include "base/mac/foundation_util.h" | 141 #include "base/mac/foundation_util.h" |
| 142 #endif | 142 #endif |
| 143 | 143 |
| 144 #if defined(USE_AURA) | 144 #if defined(USE_AURA) |
| 145 #include "content/browser/web_contents/web_contents_view_mus.h" | 145 #include "content/browser/web_contents/web_contents_view_mus.h" |
| 146 #include "content/public/common/mojo_shell_connection.h" | 146 #include "content/public/common/mojo_shell_connection.h" |
| 147 #include "ui/aura/mus/mus_util.h" | 147 #include "ui/aura/mus/mus_util.h" // nogncheck |
| 148 #endif | 148 #endif |
| 149 | 149 |
| 150 #if defined(ENABLE_PLUGINS) | 150 #if defined(ENABLE_PLUGINS) |
| 151 #include "content/browser/media/session/pepper_playback_observer.h" | 151 #include "content/browser/media/session/pepper_playback_observer.h" |
| 152 #endif // ENABLE_PLUGINS | 152 #endif // ENABLE_PLUGINS |
| 153 | 153 |
| 154 namespace content { | 154 namespace content { |
| 155 namespace { | 155 namespace { |
| 156 | 156 |
| 157 const int kMinimumDelayBetweenLoadingUpdatesMS = 100; | 157 const int kMinimumDelayBetweenLoadingUpdatesMS = 100; |
| (...skipping 5074 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5232 dialog_manager_ = dialog_manager; | 5232 dialog_manager_ = dialog_manager; |
| 5233 } | 5233 } |
| 5234 | 5234 |
| 5235 void WebContentsImpl::RemoveBindingSet(const std::string& interface_name) { | 5235 void WebContentsImpl::RemoveBindingSet(const std::string& interface_name) { |
| 5236 auto it = binding_sets_.find(interface_name); | 5236 auto it = binding_sets_.find(interface_name); |
| 5237 if (it != binding_sets_.end()) | 5237 if (it != binding_sets_.end()) |
| 5238 binding_sets_.erase(it); | 5238 binding_sets_.erase(it); |
| 5239 } | 5239 } |
| 5240 | 5240 |
| 5241 } // namespace content | 5241 } // namespace content |
| OLD | NEW |