| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 "config.h" | 5 #include "config.h" |
| 6 | 6 |
| 7 #include "ContextMenu.h" | 7 #include "ContextMenu.h" |
| 8 #include "Document.h" | 8 #include "Document.h" |
| 9 #include "DocumentLoader.h" | 9 #include "DocumentLoader.h" |
| 10 #include "Editor.h" | 10 #include "Editor.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #undef LOG | 21 #undef LOG |
| 22 | 22 |
| 23 #include "base/i18n/word_iterator.h" | 23 #include "base/i18n/word_iterator.h" |
| 24 #include "base/string_util.h" | 24 #include "base/string_util.h" |
| 25 #include "webkit/api/public/WebContextMenuData.h" | 25 #include "webkit/api/public/WebContextMenuData.h" |
| 26 #include "webkit/api/public/WebFrame.h" | 26 #include "webkit/api/public/WebFrame.h" |
| 27 #include "webkit/api/public/WebPoint.h" | 27 #include "webkit/api/public/WebPoint.h" |
| 28 #include "webkit/api/public/WebString.h" | 28 #include "webkit/api/public/WebString.h" |
| 29 #include "webkit/api/public/WebURL.h" | 29 #include "webkit/api/public/WebURL.h" |
| 30 #include "webkit/api/public/WebURLResponse.h" | 30 #include "webkit/api/public/WebURLResponse.h" |
| 31 #include "webkit/api/public/WebViewClient.h" |
| 31 #include "webkit/api/src/WebDataSourceImpl.h" | 32 #include "webkit/api/src/WebDataSourceImpl.h" |
| 32 #include "webkit/glue/context_menu.h" | 33 #include "webkit/glue/context_menu.h" |
| 33 #include "webkit/glue/context_menu_client_impl.h" | 34 #include "webkit/glue/context_menu_client_impl.h" |
| 34 #include "webkit/glue/glue_util.h" | 35 #include "webkit/glue/glue_util.h" |
| 35 #include "webkit/glue/webview_impl.h" | 36 #include "webkit/glue/webview_impl.h" |
| 36 | 37 |
| 37 using WebKit::WebContextMenuData; | 38 using WebKit::WebContextMenuData; |
| 38 using WebKit::WebDataSource; | 39 using WebKit::WebDataSource; |
| 39 using WebKit::WebDataSourceImpl; | 40 using WebKit::WebDataSourceImpl; |
| 40 using WebKit::WebFrame; | 41 using WebKit::WebFrame; |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 bool ContextMenuClientImpl::isSpeaking() { | 286 bool ContextMenuClientImpl::isSpeaking() { |
| 286 return false; | 287 return false; |
| 287 } | 288 } |
| 288 | 289 |
| 289 void ContextMenuClientImpl::stopSpeaking() { | 290 void ContextMenuClientImpl::stopSpeaking() { |
| 290 } | 291 } |
| 291 | 292 |
| 292 bool ContextMenuClientImpl::shouldIncludeInspectElementItem() { | 293 bool ContextMenuClientImpl::shouldIncludeInspectElementItem() { |
| 293 return false; | 294 return false; |
| 294 } | 295 } |
| OLD | NEW |