hwnd_command.h 717 B

123456789101112131415161718192021222324252627282930
  1. // Copyright 2017 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef TOOLS_WIN_CHROME_EXTS_COMMANDS_HWND_COMMAND_H_
  5. #define TOOLS_WIN_CHROME_EXTS_COMMANDS_HWND_COMMAND_H_
  6. #include "tools/win/chromeexts/chrome_exts_command.h"
  7. namespace tools {
  8. namespace win {
  9. namespace chromeexts {
  10. class HwndCommand : public ChromeExtsCommand {
  11. public:
  12. HwndCommand();
  13. ~HwndCommand() override;
  14. protected:
  15. HRESULT Execute() override;
  16. private:
  17. DISALLOW_COPY_AND_ASSIGN(HwndCommand);
  18. };
  19. } // namespace chromeexts
  20. } // namespace win
  21. } // namespace tools
  22. #endif // TOOLS_WIN_CHROME_EXTS_COMMANDS_HWND_COMMAND_H_