| 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/public/browser/web_contents_delegate.h" | 5 #include "content/public/browser/web_contents_delegate.h" |
| 6 | 6 |
| 7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/memory/singleton.h" | 9 #include "base/memory/singleton.h" |
| 10 #include "content/public/browser/render_view_host.h" | 10 #include "content/public/browser/render_view_host.h" |
| 11 #include "content/public/browser/web_contents.h" | 11 #include "content/public/browser/web_contents.h" |
| 12 #include "content/public/browser/web_intents_dispatcher.h" | 12 #include "content/public/browser/web_intents_dispatcher.h" |
| 13 #include "content/public/common/url_constants.h" | 13 #include "content/public/common/url_constants.h" |
| 14 #include "content/public/common/bindings_policy.h" | 14 #include "content/public/common/bindings_policy.h" |
| 15 #include "ui/gfx/rect.h" | 15 #include "ui/gfx/rect.h" |
| 16 #include "webkit/glue/web_intent_data.h" | 16 #include "webkit/glue/web_intent_data.h" |
| 17 | 17 |
| 18 namespace content { | 18 namespace content { |
| 19 | 19 |
| 20 WebContentsDelegate::WebContentsDelegate() { | 20 WebContentsDelegate::WebContentsDelegate() { |
| 21 } | 21 } |
| 22 | 22 |
| 23 WebContents* WebContentsDelegate::OpenURLFromTab(WebContents* source, | 23 WebContents* WebContentsDelegate::OpenURLFromTab(WebContents* source, |
| 24 const OpenURLParams& params) { | 24 const OpenURLParams& params) { |
| 25 return NULL; | 25 return NULL; |
| 26 } | 26 } |
| 27 | 27 |
| 28 bool WebContentsDelegate::ShouldIgnoreNavigation( |
| 29 WebContents* source, |
| 30 const GURL& validated_url, |
| 31 const content::Referrer& referrer, |
| 32 bool is_content_initiated) { |
| 33 return false; |
| 34 } |
| 35 |
| 28 bool WebContentsDelegate::IsPopupOrPanel(const WebContents* source) const { | 36 bool WebContentsDelegate::IsPopupOrPanel(const WebContents* source) const { |
| 29 return false; | 37 return false; |
| 30 } | 38 } |
| 31 | 39 |
| 32 bool WebContentsDelegate::IsApplication() const { return false; } | 40 bool WebContentsDelegate::IsApplication() const { return false; } |
| 33 | 41 |
| 34 bool WebContentsDelegate::CanLoadDataURLsInWebUI() const { return false; } | 42 bool WebContentsDelegate::CanLoadDataURLsInWebUI() const { return false; } |
| 35 | 43 |
| 36 bool WebContentsDelegate::CanReloadContents(WebContents* source) const { | 44 bool WebContentsDelegate::CanReloadContents(WebContents* source) const { |
| 37 return true; | 45 return true; |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 DCHECK(attached_contents_.find(web_contents) == attached_contents_.end()); | 182 DCHECK(attached_contents_.find(web_contents) == attached_contents_.end()); |
| 175 attached_contents_.insert(web_contents); | 183 attached_contents_.insert(web_contents); |
| 176 } | 184 } |
| 177 | 185 |
| 178 void WebContentsDelegate::Detach(WebContents* web_contents) { | 186 void WebContentsDelegate::Detach(WebContents* web_contents) { |
| 179 DCHECK(attached_contents_.find(web_contents) != attached_contents_.end()); | 187 DCHECK(attached_contents_.find(web_contents) != attached_contents_.end()); |
| 180 attached_contents_.erase(web_contents); | 188 attached_contents_.erase(web_contents); |
| 181 } | 189 } |
| 182 | 190 |
| 183 } // namespace content | 191 } // namespace content |
| OLD | NEW |