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

Side by Side Diff: chrome/common/gcm_desktop_util.h

Issue 1297503003: Merging chrome/common/gcm_desktop_util.* and chrome/browser/services/gcm/gcm_desktop_util.*. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed comments Created 5 years, 4 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
« no previous file with comments | « chrome/chrome_common.gypi ('k') | chrome/common/gcm_desktop_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef CHROME_COMMON_GCM_DESKTOP_UTIL_H_
6 #define CHROME_COMMON_GCM_DESKTOP_UTIL_H_
7
8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h"
10
11 class PrefService;
12
13 namespace base {
14 class FilePath;
15 class SequencedTaskRunner;
16 }
17
18 namespace net {
19 class URLRequestContextGetter;
20 }
21
22 namespace gcm {
23
24 class GCMDriver;
25 class GCMClientFactory;
26
27 scoped_ptr<GCMDriver> CreateGCMDriverDesktopWithTaskRunners(
28 scoped_ptr<GCMClientFactory> gcm_client_factory,
29 PrefService* prefs,
30 const base::FilePath& store_path,
31 const scoped_refptr<net::URLRequestContextGetter>& request_context,
32 const scoped_refptr<base::SequencedTaskRunner>& ui_thread,
33 const scoped_refptr<base::SequencedTaskRunner>& io_thread,
34 const scoped_refptr<base::SequencedTaskRunner>& blocking_task_runner);
35
36 } // namespace gcm
37
38 #endif // CHROME_COMMON_GCM_DESKTOP_UTIL_H_
OLDNEW
« no previous file with comments | « chrome/chrome_common.gypi ('k') | chrome/common/gcm_desktop_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698