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

Side by Side Diff: chrome/service/cloud_print/cloud_print_proxy.cc

Issue 2001009: Created a new process type called the service process to host background task... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2010 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/service/cloud_print/cloud_print_proxy.h"
6
7 CloudPrintProxy::CloudPrintProxy() {
8 }
9
10 CloudPrintProxy::~CloudPrintProxy() {
11 Shutdown();
12 }
13
14 void CloudPrintProxy::Initialize() {
15 }
16
17
18 void CloudPrintProxy::EnableForUser(const std::string& lsid,
19 const std::string& proxy_id) {
20 }
21
22 void CloudPrintProxy::DisableForUser() {
23 Shutdown();
24 }
25
26 void CloudPrintProxy::HandlePrinterNotification(
27 const std::string& printer_id) {
28 }
29
30 void CloudPrintProxy::Shutdown() {
31 }
32
OLDNEW
« no previous file with comments | « chrome/service/cloud_print/cloud_print_proxy.h ('k') | chrome/service/gaia/service_gaia_authenticator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698