// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "google_apis/common/api_error_codes.h" #include "base/strings/string_number_conversions.h" namespace google_apis { std::string ApiErrorCodeToString(ApiErrorCode error) { … } bool IsSuccessfulDriveApiErrorCode(ApiErrorCode error) { … } bool IsSuccessfulCalendarApiErrorCode(ApiErrorCode error) { … } } // namespace google_apis