| Index: extensions/browser/api/printer_provider_internal/printer_provider_internal_api.cc
|
| diff --git a/extensions/browser/api/printer_provider_internal/printer_provider_internal_api.cc b/extensions/browser/api/printer_provider_internal/printer_provider_internal_api.cc
|
| index 419f124f44345a71ab0efe79ff73b024d35182be..6ffaa4864c6743b349c414e7f721f02b4bf40c5f 100644
|
| --- a/extensions/browser/api/printer_provider_internal/printer_provider_internal_api.cc
|
| +++ b/extensions/browser/api/printer_provider_internal/printer_provider_internal_api.cc
|
| @@ -27,7 +27,7 @@
|
| #include "extensions/common/api/printer_provider.h"
|
| #include "extensions/common/api/printer_provider_internal.h"
|
|
|
| -namespace internal_api = extensions::core_api::printer_provider_internal;
|
| +namespace internal_api = extensions::api::printer_provider_internal;
|
|
|
| namespace extensions {
|
|
|
| @@ -81,7 +81,7 @@ void PrinterProviderInternalAPI::NotifyGetCapabilityResult(
|
| void PrinterProviderInternalAPI::NotifyPrintResult(
|
| const Extension* extension,
|
| int request_id,
|
| - core_api::printer_provider_internal::PrintError error) {
|
| + api::printer_provider_internal::PrintError error) {
|
| FOR_EACH_OBSERVER(PrinterProviderInternalAPIObserver, observers_,
|
| OnPrintResult(extension, request_id, error));
|
| }
|
| @@ -89,7 +89,7 @@ void PrinterProviderInternalAPI::NotifyPrintResult(
|
| void PrinterProviderInternalAPI::NotifyGetUsbPrinterInfoResult(
|
| const Extension* extension,
|
| int request_id,
|
| - const core_api::printer_provider::PrinterInfo* printer_info) {
|
| + const api::printer_provider::PrinterInfo* printer_info) {
|
| FOR_EACH_OBSERVER(
|
| PrinterProviderInternalAPIObserver, observers_,
|
| OnGetUsbPrinterInfoResult(extension, request_id, printer_info));
|
|
|