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

Side by Side Diff: chrome/browser/extensions/api/gcd_private/gcd_private_api.cc

Issue 363883002: Add API stubs for GCD device commands. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Wed 07/02/2014 1:25:27.38 Created 6 years, 5 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 2014 The Chromium Authors. All rights reserved. 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 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 #include "chrome/browser/extensions/api/gcd_private/gcd_private_api.h" 5 #include "chrome/browser/extensions/api/gcd_private/gcd_private_api.h"
6 6
7 #include "base/lazy_instance.h" 7 #include "base/lazy_instance.h"
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "chrome/browser/local_discovery/cloud_device_list.h" 9 #include "chrome/browser/local_discovery/cloud_device_list.h"
10 #include "chrome/browser/local_discovery/cloud_print_printer_list.h" 10 #include "chrome/browser/local_discovery/cloud_print_printer_list.h"
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 GcdPrivateSetupStopFunction::GcdPrivateSetupStopFunction() { 365 GcdPrivateSetupStopFunction::GcdPrivateSetupStopFunction() {
366 } 366 }
367 367
368 GcdPrivateSetupStopFunction::~GcdPrivateSetupStopFunction() { 368 GcdPrivateSetupStopFunction::~GcdPrivateSetupStopFunction() {
369 } 369 }
370 370
371 bool GcdPrivateSetupStopFunction::RunAsync() { 371 bool GcdPrivateSetupStopFunction::RunAsync() {
372 return false; 372 return false;
373 } 373 }
374 374
375 GcdPrivateGetCommandDefsFunction::GcdPrivateGetCommandDefsFunction() {
376 }
377
378 GcdPrivateGetCommandDefsFunction::~GcdPrivateGetCommandDefsFunction() {
379 }
380
381 bool GcdPrivateGetCommandDefsFunction::RunAsync() {
382 return false;
383 }
384
385 GcdPrivateInsertCommandFunction::GcdPrivateInsertCommandFunction() {
386 }
387
388 GcdPrivateInsertCommandFunction::~GcdPrivateInsertCommandFunction() {
389 }
390
391 bool GcdPrivateInsertCommandFunction::RunAsync() {
392 return false;
393 }
394
395 GcdPrivateGetCommandFunction::GcdPrivateGetCommandFunction() {
396 }
397
398 GcdPrivateGetCommandFunction::~GcdPrivateGetCommandFunction() {
399 }
400
401 bool GcdPrivateGetCommandFunction::RunAsync() {
402 return false;
403 }
404
405 GcdPrivateCancelCommandFunction::GcdPrivateCancelCommandFunction() {
406 }
407
408 GcdPrivateCancelCommandFunction::~GcdPrivateCancelCommandFunction() {
409 }
410
411 bool GcdPrivateCancelCommandFunction::RunAsync() {
412 return false;
413 }
414
415 GcdPrivateGetCommandsListFunction::GcdPrivateGetCommandsListFunction() {
416 }
417
418 GcdPrivateGetCommandsListFunction::~GcdPrivateGetCommandsListFunction() {
419 }
420
421 bool GcdPrivateGetCommandsListFunction::RunAsync() {
422 return false;
423 }
424
375 } // namespace extensions 425 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698