blob: 4a6d123b5618435e5e9a8ae9a96c0cd0ccc8dde0 [file] [log] [blame]
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_BROWSER_WEBUI_GENERIC_HANDLER_H_
#define CONTENT_BROWSER_WEBUI_GENERIC_HANDLER_H_
#include "base/compiler_specific.h"
#include "base/macros.h"
#include "content/public/browser/web_ui_message_handler.h"
namespace base {
class ListValue;
}
namespace content {
// A place to add handlers for messages shared across all WebUI pages.
class GenericHandler : public WebUIMessageHandler {
public:
GenericHandler();
~GenericHandler() override;
// WebUIMessageHandler implementation.
void RegisterMessages() override;
private:
void HandleNavigateToUrl(const base::ListValue* args);
DISALLOW_COPY_AND_ASSIGN(GenericHandler);
};
} // namespace content
#endif // CONTENT_BROWSER_WEBUI_GENERIC_HANDLER_H_