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

Side by Side Diff: chrome/browser/google_apis/gdata_util.h

Issue 10920091: Move Drive API files to google_apis directory (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rename google_api directory to google_apis Created 8 years, 3 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROMEOS_GDATA_GDATA_UTIL_H_ 5 #ifndef CHROME_BROWSER_GOOGLE_APIS_GDATA_UTIL_H_
6 #define CHROME_BROWSER_CHROMEOS_GDATA_GDATA_UTIL_H_ 6 #define CHROME_BROWSER_GOOGLE_APIS_GDATA_UTIL_H_
7 7
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/bind.h" 12 #include "base/bind.h"
13 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
14 #include "base/platform_file.h" 14 #include "base/platform_file.h"
15 #include "base/time.h" 15 #include "base/time.h"
16 #include "chrome/browser/chromeos/gdata/gdata_errorcode.h" 16 #include "chrome/browser/google_apis/gdata_errorcode.h"
17 17
18 class FilePath; 18 class FilePath;
19 class Profile; 19 class Profile;
20 20
21 namespace base { 21 namespace base {
22 class SequencedTaskRunner; 22 class SequencedTaskRunner;
23 } // namespace base 23 } // namespace base
24 24
25 namespace tracked_objects { 25 namespace tracked_objects {
26 class Location; 26 class Location;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 // callback that runs on the calling thread. 59 // callback that runs on the calling thread.
60 void PostBlockingPoolSequencedTaskAndReply( 60 void PostBlockingPoolSequencedTaskAndReply(
61 const tracked_objects::Location& from_here, 61 const tracked_objects::Location& from_here,
62 base::SequencedTaskRunner* blocking_task_runner, 62 base::SequencedTaskRunner* blocking_task_runner,
63 const base::Closure& request_task, 63 const base::Closure& request_task,
64 const base::Closure& reply_task); 64 const base::Closure& reply_task);
65 65
66 } // namespace util 66 } // namespace util
67 } // namespace gdata 67 } // namespace gdata
68 68
69 #endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_UTIL_H_ 69 #endif // CHROME_BROWSER_GOOGLE_APIS_GDATA_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698