summaryrefslogtreecommitdiffstats
path: root/views/controls/menu/menu_item_view_gtk.cc
diff options
context:
space:
mode:
authorsky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-24 15:46:45 +0000
committersky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-08-24 15:46:45 +0000
commita87ecb3c7170caa40810def524fbae1aee4d3533 (patch)
tree947732a745f124feda7ace8ac466cf75c746db62 /views/controls/menu/menu_item_view_gtk.cc
parentde1b764f404e5fb6975e7cc9de7120d46e28dcfd (diff)
downloadchromium_src-a87ecb3c7170caa40810def524fbae1aee4d3533.zip
chromium_src-a87ecb3c7170caa40810def524fbae1aee4d3533.tar.gz
chromium_src-a87ecb3c7170caa40810def524fbae1aee4d3533.tar.bz2
Further refactoring of menus for GTK. I've now separated out
everything and menus some what work on GTK. I need to get painting working and I'm sure there will be fine tuning, but I want to check in all this splitting of files before someone else needs change one of these files. Thankfully I wrote an interactive ui test that exercises much of this code, and it still passes:) BUG=none TEST=thoroughly test bookmark menus on windows to make sure I didn't break them. Review URL: http://codereview.chromium.org/174274 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24098 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/controls/menu/menu_item_view_gtk.cc')
-rw-r--r--views/controls/menu/menu_item_view_gtk.cc16
1 files changed, 16 insertions, 0 deletions
diff --git a/views/controls/menu/menu_item_view_gtk.cc b/views/controls/menu/menu_item_view_gtk.cc
new file mode 100644
index 0000000..6f5b8e4
--- /dev/null
+++ b/views/controls/menu/menu_item_view_gtk.cc
@@ -0,0 +1,16 @@
+// Copyright (c) 2009 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.
+
+#include "views/controls/menu/menu_item_view.h"
+
+#include "base/logging.h"
+#include "views/controls/menu/menu_config.h"
+
+namespace views {
+
+void MenuItemView::Paint(gfx::Canvas* canvas, bool for_drag) {
+ NOTIMPLEMENTED();
+}
+
+} // namespace views