Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/engine/UpdateInstallDialog.h

Issue 11304082: Download updates automatically, ask to install from a modeless dialog (Closed)
Patch Set: Created July 31, 2013, 7:16 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/engine/UpdateInstallDialog.h
===================================================================
new file mode 100644
--- /dev/null
+++ b/src/engine/UpdateInstallDialog.h
@@ -0,0 +1,20 @@
+#ifndef UPDATE_INSTALL_DIALOG_H
+#define UPDATE_INSTALL_DIALOG_H
+
+class UpdateInstallDialog
+{
+public:
+ UpdateInstallDialog();
+ ~UpdateInstallDialog();
+ bool Show();
+
+private:
+ HWND window;
+
+ UpdateInstallDialog(const UpdateInstallDialog&);
+ UpdateInstallDialog& operator=(const UpdateInstallDialog&);
+ void CreateText();
+ void CreateButtons();
+};
+
+#endif

Powered by Google App Engine
This is Rietveld