// Copyright (c) 2023 The Brave Authors. All rights reserved. // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this file, // You can obtain one at https://mozilla.org/MPL/2.0/. #ifndef BRAVE_BROWSER_UI_COMMANDER_SIMPLE_COMMAND_SOURCE_H_ #define BRAVE_BROWSER_UI_COMMANDER_SIMPLE_COMMAND_SOURCE_H_ #include "brave/browser/ui/commander/command_source.h" namespace commander { class SimpleCommandSource : public CommandSource { public: SimpleCommandSource(); ~SimpleCommandSource() override; SimpleCommandSource(const SimpleCommandSource& other) = delete; SimpleCommandSource& operator=(const SimpleCommandSource& other) = delete; // CommandSource: CommandSource::CommandResults GetCommands( const std::u16string& input, BrowserWindowInterface* browser) const override; }; } // namespace commander #endif // BRAVE_BROWSER_UI_COMMANDER_SIMPLE_COMMAND_SOURCE_H_