Index: ui/views/examples/widget_example.h |
diff --git a/ui/views/examples/widget_example.h b/ui/views/examples/widget_example.h |
index 44e184008fd7d456747e1ec9aef285e808d60f73..c847b8e257a342a4e71ac423d385d47c7d10ffb3 100644 |
--- a/ui/views/examples/widget_example.h |
+++ b/ui/views/examples/widget_example.h |
@@ -28,10 +28,14 @@ class VIEWS_EXAMPLES_EXPORT WidgetExample : public ExampleBase, |
private: |
// Button tags used to identify various commands. |
enum Command { |
- POPUP, // Show a popup widget. |
- DIALOG, // Show a dialog widget. |
- CHILD, // Show a child widget. |
- CLOSE_WIDGET, // Close the sender button's widget. |
+ POPUP, // Show a popup widget. |
+ DIALOG, // Show a dialog widget. |
+ CHILD, // Show a child widget. |
+ CLOSE_WIDGET, // Close the sender button's widget. |
+ MINIMIZE, // Minimize the example window. |
+ MAXIMIZE, // Maximize the example window. |
+ FULLSCREEN_ON, // Set fullscreen to true on the example window. |
+ FULLSCREEN_OFF, // Set fullscreen to false on the example window. |
}; |
// Construct a button with the specified |label| and |tag| in |container|. |