electron/atom/renderer/atom_autofill_agent.h

80 lines
2.8 KiB
C
Raw Normal View History

2017-05-19 19:35:13 +00:00
// Copyright (c) 2017 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#ifndef ATOM_RENDERER_ATOM_AUTOFILL_AGENT_H_
#define ATOM_RENDERER_ATOM_AUTOFILL_AGENT_H_
2017-05-19 19:52:18 +00:00
#include <vector>
2017-05-19 19:35:13 +00:00
#include "base/memory/weak_ptr.h"
#include "content/public/renderer/render_frame_observer.h"
#include "content/public/renderer/render_view_observer.h"
2017-05-19 19:35:13 +00:00
#include "third_party/WebKit/public/web/WebAutofillClient.h"
#include "third_party/WebKit/public/web/WebFormControlElement.h"
#include "third_party/WebKit/public/web/WebInputElement.h"
#include "third_party/WebKit/public/web/WebNode.h"
namespace atom {
2017-05-19 19:52:18 +00:00
class AutofillAgent : public content::RenderFrameObserver,
public blink::WebAutofillClient {
2017-05-19 19:35:13 +00:00
public:
2017-05-19 19:52:18 +00:00
explicit AutofillAgent(content::RenderFrame* frame);
~AutofillAgent() override;
2017-05-19 19:35:13 +00:00
// content::RenderFrameObserver:
void OnDestruct() override;
2017-05-19 19:52:18 +00:00
2017-05-19 19:35:13 +00:00
void DidChangeScrollOffset() override;
void FocusedNodeChanged(const blink::WebNode&) override;
2017-06-21 22:47:01 +00:00
void DidCompleteFocusChangeInFrame() override;
2017-06-29 23:50:55 +00:00
void DidReceiveLeftMouseDownOrGestureTapInNode(
const blink::WebNode&) override;
2017-05-19 19:35:13 +00:00
private:
struct ShowSuggestionsOptions {
ShowSuggestionsOptions();
bool autofill_on_empty_values;
bool requires_caret_at_end;
};
2017-05-19 19:52:18 +00:00
2017-05-19 19:35:13 +00:00
bool OnMessageReceived(const IPC::Message& message) override;
// blink::WebAutofillClient:
2017-06-16 20:42:33 +00:00
void TextFieldDidEndEditing(const blink::WebInputElement&) override;
void TextFieldDidChange(const blink::WebFormControlElement&) override;
void TextFieldDidChangeImpl(const blink::WebFormControlElement&);
void TextFieldDidReceiveKeyDown(const blink::WebInputElement&,
2017-05-19 19:35:13 +00:00
const blink::WebKeyboardEvent&) override;
2017-06-16 20:42:33 +00:00
void OpenTextDataListChooser(const blink::WebInputElement&) override;
void DataListOptionsChanged(const blink::WebInputElement&) override;
2017-05-19 19:52:18 +00:00
2017-05-19 19:35:13 +00:00
bool IsUserGesture() const;
void HidePopup();
void ShowPopup(const blink::WebFormControlElement&,
const std::vector<base::string16>&,
const std::vector<base::string16>&);
void ShowSuggestions(const blink::WebFormControlElement& element,
const ShowSuggestionsOptions& options);
void OnAcceptSuggestion(base::string16 suggestion);
void DoFocusChangeComplete();
// True when the last click was on the focused node.
bool focused_node_was_last_clicked_ = false;
// This is set to false when the focus changes, then set back to true soon
// afterwards. This helps track whether an event happened after a node was
// already focused, or if it caused the focus to change.
bool was_focused_before_now_ = false;
2017-05-19 19:35:13 +00:00
base::WeakPtrFactory<AutofillAgent> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(AutofillAgent);
};
} // namespace atom
#endif // ATOM_RENDERER_ATOM_AUTOFILL_AGENT_H_