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

Unified Diff: ui/views/controls/menu/menu_runner_handler.h

Issue 59383003: Add the button style for combobox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sky's review (6) Created 7 years 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: ui/views/controls/menu/menu_runner_handler.h
diff --git a/ui/views/controls/menu/menu_runner_handler.h b/ui/views/controls/menu/menu_runner_handler.h
new file mode 100644
index 0000000000000000000000000000000000000000..b40850b560bac299e52efbf117a37107f45c5acc
--- /dev/null
+++ b/ui/views/controls/menu/menu_runner_handler.h
@@ -0,0 +1,30 @@
+// 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 UI_VIEWS_CONTROLS_MENU_MENU_RUNNER_HANDLER_H_
+#define UI_VIEWS_CONTROLS_MENU_MENU_RUNNER_HANDLER_H_
+
+#include "base/basictypes.h"
+#include "ui/views/controls/menu/menu_item_view.h"
+
+namespace views {
+
+class MenuButton;
+class Widget;
+
+// An interface which defines RunMenuAt.
sky 2013/12/10 16:56:06 Used internally by MenuRunner to show the menu. Ca
hajimehoshi 2013/12/11 04:07:04 Done.
+class VIEWS_EXPORT MenuRunnerHandler {
+ public:
+ virtual MenuRunner::RunResult RunMenuAt(Widget* parent,
+ MenuButton* button,
+ const gfx::Rect& bounds,
+ MenuItemView::AnchorPosition anchor,
+ ui::MenuSourceType source_type,
+ int32 types) = 0;
+ virtual ~MenuRunnerHandler() {}
sky 2013/12/10 16:56:06 destructor should be first.
hajimehoshi 2013/12/11 04:07:04 Done.
+};
+
+} // namespace views
+
+#endif // UI_VIEWS_CONTROLS_MENU_MENU_RUNNER_HANDLER_H_

Powered by Google App Engine
This is Rietveld 408576698