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

Unified Diff: content/browser/renderer_host/render_widget_host_delegate.h

Issue 10377158: Move keyboard related methods from RenderViewHostDelegate to a new RenderWidgetHostDelegate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove crbug link Created 8 years, 7 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/render_widget_host_delegate.h
diff --git a/content/browser/renderer_host/render_widget_host_delegate.h b/content/browser/renderer_host/render_widget_host_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..768d6df4551922b1c7a165a363598e3acd35607e
--- /dev/null
+++ b/content/browser/renderer_host/render_widget_host_delegate.h
@@ -0,0 +1,41 @@
+// Copyright (c) 2012 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_RENDER_WIDGET_HOST_DELEGATE_H_
+#define CONTENT_BROWSER_RENDER_WIDGET_HOST_DELEGATE_H_
+#pragma once
+
+#include "content/common/content_export.h"
+
+struct NativeWebKeyboardEvent;
+
+namespace content {
+
+//
+// RenderWidgetHostDelegate
+//
+// An interface implemented by an object interested in knowing about the state
+// of the RenderWidgetHost.
+class CONTENT_EXPORT RenderWidgetHostDelegate {
+ public:
+ // Callback to give the browser a chance to handle the specified keyboard
+ // event before sending it to the renderer.
+ // Returns true if the |event| was handled. Otherwise, if the |event| would
+ // be handled in HandleKeyboardEvent() method as a normal keyboard shortcut,
+ // |*is_keyboard_shortcut| should be set to true.
+ virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
+ bool* is_keyboard_shortcut);
+
+ // Callback to inform the browser that the renderer did not process the
+ // specified events. This gives an opportunity to the browser to process the
+ // event (used for keyboard shortcuts).
+ virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) {}
+
+ protected:
+ virtual ~RenderWidgetHostDelegate() {}
+};
+
+} // namespace content
+
+#endif // CONTENT_BROWSER_RENDER_WIDGET_HOST_DELEGATE_H_
« no previous file with comments | « content/browser/renderer_host/render_view_host_impl.cc ('k') | content/browser/renderer_host/render_widget_host_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698