chromium/chrome/browser/ui/webui/welcome/bookmark_handler.cc

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ui/webui/welcome/bookmark_handler.h"

#include "base/functional/bind.h"
#include "chrome/grit/browser_resources.h"
#include "components/bookmarks/common/bookmark_pref_names.h"
#include "components/prefs/pref_service.h"
#include "content/public/browser/web_ui_data_source.h"

namespace welcome {

BookmarkHandler::BookmarkHandler(PrefService* prefs) :{}

BookmarkHandler::~BookmarkHandler() {}

void BookmarkHandler::RegisterMessages() {}

void BookmarkHandler::HandleToggleBookmarkBar(const base::Value::List& args) {}

void BookmarkHandler::HandleIsBookmarkBarShown(const base::Value::List& args) {}

}  // namespace welcome