blob: dd8742e37accd62e8f4018e854b7f9f4576542fb [file] [log] [blame]
// Copyright 2019 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.
#include "google_apis/gaia/core_account_id.h"
CoreAccountId::CoreAccountId(const char* id) : id_(id) {}
CoreAccountId::CoreAccountId(std::string&& id) : id_(std::move(id)) {}
CoreAccountId::CoreAccountId(const std::string& id) : id_(id) {}