#ifndef UI_VIEWS_EXAMPLES_EXAMPLES_WINDOW_H_
#define UI_VIEWS_EXAMPLES_EXAMPLES_WINDOW_H_
#include "base/memory/scoped_ptr.h"
#include "base/memory/scoped_vector.h"
#include "ui/views/examples/views_examples_export.h"
namespace aura {
class Window;
}
namespace views {
namespace examples {
class ExampleBase;
enum Operation {
DO_NOTHING_ON_CLOSE = 0,
QUIT_ON_CLOSE,
};
VIEWS_EXAMPLES_EXPORT void ShowExamplesWindow(
Operation operation,
aura::Window* window_context,
scoped_ptr<ScopedVector<ExampleBase> > extra_examples);
}
}
#endif