Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Side by Side Diff: chrome/browser/sync_file_system/drive_backend/drive_service_wrapper.cc

Issue 248853002: [NOCOMMIT] Make DriveService{Wrapper|Messenger} class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplify Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/sync_file_system/drive_backend/drive_service_wrapper.h"
6
7 namespace sync_file_system {
8 namespace drive_backend {
9
10 DriveServiceWrapper::DriveServiceWrapper(
11 drive::DriveServiceInterface* drive_service)
12 : drive_service_(drive_service) {
13 DCHECK(drive_service_);
14 }
15
16 DriveServiceWrapper::~DriveServiceWrapper() {}
17
18 drive::DriveServiceInterface* DriveServiceWrapper::GetDriveService() {
19 return drive_service_;
20 }
21
22 } // namespace drive_backend
23 } // namespace sync_file_system
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698