| Index: gpu/demos/framework/main_exe.cc
|
| diff --git a/gpu/demos/framework/main_exe.cc b/gpu/demos/framework/main_exe.cc
|
| index 296d164e1015db9b35059540923650b821c30248..12d3828a460113162906b6dcf6bd50c02bbca8b9 100644
|
| --- a/gpu/demos/framework/main_exe.cc
|
| +++ b/gpu/demos/framework/main_exe.cc
|
| @@ -8,9 +8,9 @@
|
| #include "gpu/demos/framework/window.h"
|
| #include "ui/gfx/gl/gl_surface.h"
|
|
|
| -#if defined(TOOLKIT_USES_GTK)
|
| +#if defined(TOOLKIT_GTK)
|
| #include <gtk/gtk.h>
|
| -#endif // TOOLKIT_USES_GTK
|
| +#endif // TOOLKIT_GTK
|
|
|
| namespace {
|
| static const int kWindowWidth = 512;
|
| @@ -18,9 +18,9 @@ static const int kWindowHeight = 512;
|
| } // namespace.
|
|
|
| int main(int argc, char** argv) {
|
| -#if defined(TOOLKIT_USES_GTK)
|
| +#if defined(TOOLKIT_GTK)
|
| gtk_init(&argc, &argv);
|
| -#endif // TOOLKIT_USES_GTK
|
| +#endif // TOOLKIT_GTK
|
|
|
| // AtExitManager is used by singleton classes to delete themselves when
|
| // the program terminates.
|
|
|