OLD | NEW |
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 Loading... |
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 |
OLD | NEW |