#ifndef CHROME_RENDERER_EXTENSIONS_APP_WINDOW_CUSTOM_BINDINGS_H_
#define CHROME_RENDERER_EXTENSIONS_APP_WINDOW_CUSTOM_BINDINGS_H_
#include "chrome/renderer/extensions/chrome_v8_extension.h"
namespace extensions {
class Dispatcher;
class AppWindowCustomBindings : public ChromeV8Extension {
 public:
  AppWindowCustomBindings(Dispatcher* dispatcher, ChromeV8Context* context);
 private:
  void GetView(const v8::FunctionCallbackInfo<v8::Value>& args);
  
  
  void GetWindowControlsHtmlTemplate(
      const v8::FunctionCallbackInfo<v8::Value>& args);
  DISALLOW_COPY_AND_ASSIGN(AppWindowCustomBindings);
};
}  
#endif