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

Side by Side Diff: Source/web/ChromeClientImpl.h

Issue 852083002: Propagate focus type to plugins (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Moved Created 5 years, 11 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/platform/Widget.h ('k') | Source/web/ChromeClientImpl.cpp » ('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) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
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 are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 virtual ~ChromeClientImpl(); 67 virtual ~ChromeClientImpl();
68 68
69 virtual void* webView() const override; 69 virtual void* webView() const override;
70 70
71 // ChromeClient methods: 71 // ChromeClient methods:
72 virtual void chromeDestroyed() override; 72 virtual void chromeDestroyed() override;
73 virtual void setWindowRect(const FloatRect&) override; 73 virtual void setWindowRect(const FloatRect&) override;
74 virtual FloatRect windowRect() override; 74 virtual FloatRect windowRect() override;
75 virtual FloatRect pageRect() override; 75 virtual FloatRect pageRect() override;
76 virtual void focus() override; 76 virtual void focus() override;
77 virtual bool canTakeFocus(FocusType) override; 77 virtual bool canTakeFocus(WebFocusType) override;
78 virtual void takeFocus(FocusType) override; 78 virtual void takeFocus(WebFocusType) override;
79 virtual void focusedNodeChanged(Node*) override; 79 virtual void focusedNodeChanged(Node*) override;
80 virtual void focusedFrameChanged(LocalFrame*) override; 80 virtual void focusedFrameChanged(LocalFrame*) override;
81 virtual Page* createWindow( 81 virtual Page* createWindow(
82 LocalFrame*, const FrameLoadRequest&, const WindowFeatures&, NavigationP olicy, ShouldSendReferrer) override; 82 LocalFrame*, const FrameLoadRequest&, const WindowFeatures&, NavigationP olicy, ShouldSendReferrer) override;
83 virtual void show(NavigationPolicy) override; 83 virtual void show(NavigationPolicy) override;
84 virtual bool canRunModal() override; 84 virtual bool canRunModal() override;
85 virtual void runModal() override; 85 virtual void runModal() override;
86 virtual void setToolbarsVisible(bool) override; 86 virtual void setToolbarsVisible(bool) override;
87 virtual bool toolbarsVisible() override; 87 virtual bool toolbarsVisible() override;
88 virtual void setStatusbarVisible(bool) override; 88 virtual void setStatusbarVisible(bool) override;
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 WindowFeatures m_windowFeatures; 188 WindowFeatures m_windowFeatures;
189 189
190 PagePopupDriver* m_pagePopupDriver; 190 PagePopupDriver* m_pagePopupDriver;
191 }; 191 };
192 192
193 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl()); 193 DEFINE_TYPE_CASTS(ChromeClientImpl, ChromeClient, client, client->isChromeClient Impl(), client.isChromeClientImpl());
194 194
195 } // namespace blink 195 } // namespace blink
196 196
197 #endif 197 #endif
OLDNEW
« no previous file with comments | « Source/platform/Widget.h ('k') | Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698