summaryrefslogtreecommitdiffstats
path: root/chrome/views
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/views')
-rw-r--r--chrome/views/controller.h11
-rw-r--r--chrome/views/message_box_view.cc1
2 files changed, 2 insertions, 10 deletions
diff --git a/chrome/views/controller.h b/chrome/views/controller.h
index 17edadf..edd9a1c 100644
--- a/chrome/views/controller.h
+++ b/chrome/views/controller.h
@@ -7,15 +7,8 @@
#include <string>
-///////////////////////////////////////////////////////////////////////////////
-//
-// Controller class
-//
-// This is the Controller portion of a MVC pattern. It handles dispatching
-// commands, maintaining enabled state, and updating the UI as that state
-// changes.
-//
-///////////////////////////////////////////////////////////////////////////////
+// TODO(beng): remove this interface and fold it into MenuDelegate.
+
class Controller {
public:
virtual ~Controller() { }
diff --git a/chrome/views/message_box_view.cc b/chrome/views/message_box_view.cc
index 2129212..6851ed4 100644
--- a/chrome/views/message_box_view.cc
+++ b/chrome/views/message_box_view.cc
@@ -6,7 +6,6 @@
#include "base/message_loop.h"
#include "base/string_util.h"
-#include "chrome/browser/controller.h"
#include "chrome/browser/views/standard_layout.h"
#include "chrome/common/l10n_util.h"
#include "chrome/views/checkbox.h"