// Copyright (c) 2012 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 CHROME_BROWSER_CHROMEOS_DRIVE_DOCUMENT_ENTRY_CONVERSION_H_ #define CHROME_BROWSER_CHROMEOS_DRIVE_DOCUMENT_ENTRY_CONVERSION_H_ #include #include "base/memory/scoped_ptr.h" class GURL; namespace google_apis { class DocumentEntry; } namespace drive { class DriveEntryProto; // Converts a google_apis::DocumentEntry into a DriveEntryProto. DriveEntryProto ConvertDocumentEntryToDriveEntryProto( const google_apis::DocumentEntry& document_entry); } // namespace drive #endif // CHROME_BROWSER_CHROMEOS_DRIVE_DOCUMENT_ENTRY_CONVERSION_H_