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

Unified Diff: third_party/WebKit/Source/core/html/HTMLAreaElement.h

Issue 2810593002: Set plugin focus by implementing HTMLPlugInElement::SetFocused. (Closed)
Patch Set: fix comments Created 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/HTMLAreaElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLAreaElement.h b/third_party/WebKit/Source/core/html/HTMLAreaElement.h
index b7c7797be5f6e78eae252f4385dedffec7c060ca..18de31b93270ab9743c57f89441c1135db11f32d 100644
--- a/third_party/WebKit/Source/core/html/HTMLAreaElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLAreaElement.h
@@ -23,10 +23,11 @@
#ifndef HTMLAreaElement_h
#define HTMLAreaElement_h
+#include <memory>
#include "core/CoreExport.h"
#include "core/html/HTMLAnchorElement.h"
#include "platform/geometry/LayoutRect.h"
-#include <memory>
+#include "public/platform/WebFocusType.h"
namespace blink {
@@ -65,7 +66,7 @@ class CORE_EXPORT HTMLAreaElement final : public HTMLAnchorElement {
bool IsMouseFocusable() const override;
bool LayoutObjectIsFocusable() const override;
void UpdateFocusAppearance(SelectionBehaviorOnFocus) override;
- void SetFocused(bool) override;
+ void SetFocused(bool, WebFocusType) override;
enum Shape { kDefault, kPoly, kRect, kCircle };
void InvalidateCachedPath();
« no previous file with comments | « third_party/WebKit/Source/core/dom/Node.cpp ('k') | third_party/WebKit/Source/core/html/HTMLAreaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698