This change corrects the constructors of several classes under browser/, using clang-tidy's modernize-use-equals-default. Additionally, this commit includes a few additional straggler files.
22 lines
649 B
C++
22 lines
649 B
C++
/* Copyright (c) 2022 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 http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef BRAVE_COMMON_BRAVE_CHANNEL_INFO_POSIX_H_
|
|
#define BRAVE_COMMON_BRAVE_CHANNEL_INFO_POSIX_H_
|
|
|
|
#include <string>
|
|
|
|
#include "components/version_info/version_info.h"
|
|
|
|
namespace brave {
|
|
|
|
version_info::Channel GetChannelImpl(std::string* modifier_out,
|
|
std::string* data_dir_suffix_out);
|
|
|
|
}
|
|
|
|
#endif // BRAVE_COMMON_BRAVE_CHANNEL_INFO_POSIX_H_
|
|
|