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

Side by Side Diff: Source/web/EditorClientImpl.cpp

Issue 241303002: Rename WebFrameImpl to WebLocalFrameImpl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix Mac too Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « Source/web/DatabaseClientImpl.cpp ('k') | Source/web/FrameLoaderClientImpl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007 Apple, Inc. All rights reserved. 2 * Copyright (C) 2006, 2007 Apple, Inc. All rights reserved.
3 * Copyright (C) 2012 Google, Inc. All rights reserved. 3 * Copyright (C) 2012 Google, Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 10 matching lines...) Expand all
21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26 26
27 #include "config.h" 27 #include "config.h"
28 #include "EditorClientImpl.h" 28 #include "EditorClientImpl.h"
29 29
30 #include "WebFrameClient.h" 30 #include "WebFrameClient.h"
31 #include "WebFrameImpl.h" 31 #include "WebLocalFrameImpl.h"
32 #include "WebPermissionClient.h" 32 #include "WebPermissionClient.h"
33 #include "WebViewClient.h" 33 #include "WebViewClient.h"
34 #include "WebViewImpl.h" 34 #include "WebViewImpl.h"
35 #include "core/editing/SelectionType.h" 35 #include "core/editing/SelectionType.h"
36 36
37 using namespace WebCore; 37 using namespace WebCore;
38 38
39 namespace blink { 39 namespace blink {
40 40
41 EditorClientImpl::EditorClientImpl(WebViewImpl* webview) 41 EditorClientImpl::EditorClientImpl(WebViewImpl* webview)
42 : m_webView(webview) 42 : m_webView(webview)
43 { 43 {
44 } 44 }
45 45
46 EditorClientImpl::~EditorClientImpl() 46 EditorClientImpl::~EditorClientImpl()
47 { 47 {
48 } 48 }
49 49
50 void EditorClientImpl::respondToChangedSelection(LocalFrame* frame, WebCore::Sel ectionType selectionType) 50 void EditorClientImpl::respondToChangedSelection(LocalFrame* frame, WebCore::Sel ectionType selectionType)
51 { 51 {
52 WebFrameImpl* webFrame = WebFrameImpl::fromFrame(frame); 52 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(frame);
53 if (webFrame->client()) 53 if (webFrame->client())
54 webFrame->client()->didChangeSelection(selectionType != WebCore::RangeSe lection); 54 webFrame->client()->didChangeSelection(selectionType != WebCore::RangeSe lection);
55 } 55 }
56 56
57 void EditorClientImpl::respondToChangedContents() 57 void EditorClientImpl::respondToChangedContents()
58 { 58 {
59 if (m_webView->client()) 59 if (m_webView->client())
60 m_webView->client()->didChangeContents(); 60 m_webView->client()->didChangeContents();
61 } 61 }
62 62
63 bool EditorClientImpl::canCopyCut(LocalFrame* frame, bool defaultValue) const 63 bool EditorClientImpl::canCopyCut(LocalFrame* frame, bool defaultValue) const
64 { 64 {
65 WebFrameImpl* webFrame = WebFrameImpl::fromFrame(frame); 65 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(frame);
66 if (!webFrame->permissionClient()) 66 if (!webFrame->permissionClient())
67 return defaultValue; 67 return defaultValue;
68 return webFrame->permissionClient()->allowWriteToClipboard(defaultValue); 68 return webFrame->permissionClient()->allowWriteToClipboard(defaultValue);
69 } 69 }
70 70
71 bool EditorClientImpl::canPaste(LocalFrame* frame, bool defaultValue) const 71 bool EditorClientImpl::canPaste(LocalFrame* frame, bool defaultValue) const
72 { 72 {
73 WebFrameImpl* webFrame = WebFrameImpl::fromFrame(frame); 73 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(frame);
74 if (!webFrame->permissionClient()) 74 if (!webFrame->permissionClient())
75 return defaultValue; 75 return defaultValue;
76 return webFrame->permissionClient()->allowReadFromClipboard(defaultValue); 76 return webFrame->permissionClient()->allowReadFromClipboard(defaultValue);
77 } 77 }
78 78
79 void EditorClientImpl::didExecuteCommand(String commandName) 79 void EditorClientImpl::didExecuteCommand(String commandName)
80 { 80 {
81 if (m_webView->client()) 81 if (m_webView->client())
82 m_webView->client()->didExecuteCommand(WebString(commandName)); 82 m_webView->client()->didExecuteCommand(WebString(commandName));
83 } 83 }
84 84
85 bool EditorClientImpl::handleKeyboardEvent() 85 bool EditorClientImpl::handleKeyboardEvent()
86 { 86 {
87 return m_webView->client() && m_webView->client()->handleCurrentKeyboardEven t(); 87 return m_webView->client() && m_webView->client()->handleCurrentKeyboardEven t();
88 } 88 }
89 89
90 } // namesace blink 90 } // namesace blink
OLDNEW
« no previous file with comments | « Source/web/DatabaseClientImpl.cpp ('k') | Source/web/FrameLoaderClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698