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

Unified Diff: content/browser/renderer_host/input/input_queue_client.h

Issue 25385002: Remove the BufferedInputRouter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Space removal Created 7 years, 3 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: content/browser/renderer_host/input/input_queue_client.h
diff --git a/content/browser/renderer_host/input/input_queue_client.h b/content/browser/renderer_host/input/input_queue_client.h
deleted file mode 100644
index f1151d92fed86d68e6b425af20a06020585aa606..0000000000000000000000000000000000000000
--- a/content/browser/renderer_host/input/input_queue_client.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2013 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 CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_QUEUE_CLIENT_H_
-#define CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_QUEUE_CLIENT_H_
-
-#include <vector>
-
-#include "base/basictypes.h"
-#include "base/memory/scoped_vector.h"
-#include "content/common/input/input_event_disposition.h"
-
-namespace content {
-
-class EventPacket;
-
-class InputQueueClient {
- public:
- virtual ~InputQueueClient() {}
-
- // Used by the flush process for sending batched events to the desired target.
- virtual void Deliver(const EventPacket& packet) = 0;
-
- // Signalled when the InputQueue has received and dispatched
- // event ACK's from the previous flush.
- virtual void DidFinishFlush() = 0;
-
- // Signalled when the InputQueue receives an input event.
- virtual void SetNeedsFlush() = 0;
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_INPUT_QUEUE_CLIENT_H_
« no previous file with comments | « content/browser/renderer_host/input/input_queue.cc ('k') | content/browser/renderer_host/input/input_queue_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698