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

Unified Diff: components/autofill/renderer/page_click_listener.h

Issue 15949025: In components/autofill, move renderer/ to content/renderer (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Response to reviews Created 7 years, 6 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
« no previous file with comments | « components/autofill/renderer/form_cache.cc ('k') | components/autofill/renderer/page_click_tracker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/renderer/page_click_listener.h
diff --git a/components/autofill/renderer/page_click_listener.h b/components/autofill/renderer/page_click_listener.h
deleted file mode 100644
index 7101722ddb93fd472280aaf9671ae61dad1159b7..0000000000000000000000000000000000000000
--- a/components/autofill/renderer/page_click_listener.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef COMPONENTS_AUTOFILL_RENDERER_PAGE_CLICK_LISTENER_H_
-#define COMPONENTS_AUTOFILL_RENDERER_PAGE_CLICK_LISTENER_H_
-
-namespace WebKit {
-class WebInputElement;
-}
-
-namespace autofill {
-
-// Interface that should be implemented by classes interested in getting
-// notifications for clicks on a page.
-// Register on the PageListenerTracker object.
-class PageClickListener {
- public:
- // Notification that |element| was clicked.
- // |was_focused| is true if |element| had focus BEFORE the click.
- // |is_focused| is true if |element| has focus AFTER the click was processed.
- virtual void InputElementClicked(const WebKit::WebInputElement& element,
- bool was_focused,
- bool is_focused) = 0;
-
- // If the previously focused element was an input field, listeners are
- // informed that the text field has lost its focus.
- virtual void InputElementLostFocus() = 0;
-
- protected:
- virtual ~PageClickListener() {}
-};
-
-} // namespace autofill
-
-#endif // COMPONENTS_AUTOFILL_RENDERER_PAGE_CLICK_LISTENER_H_
« no previous file with comments | « components/autofill/renderer/form_cache.cc ('k') | components/autofill/renderer/page_click_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698