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

Side by Side Diff: extensions/browser/api/document_scan/document_scan_interface_nonchromeos.cc

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
Patch Set: Created 4 years, 12 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
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 "base/macros.h"
5 #include "extensions/browser/api/document_scan/document_scan_interface.h" 6 #include "extensions/browser/api/document_scan/document_scan_interface.h"
6 7
7 namespace { 8 namespace {
8 9
9 const char kScanFunctionNotImplementedError[] = "Scan function not implemented"; 10 const char kScanFunctionNotImplementedError[] = "Scan function not implemented";
10 11
11 } // namespace 12 } // namespace
12 13
13 namespace extensions { 14 namespace extensions {
14 15
(...skipping 19 matching lines...) Expand all
34 }; 35 };
35 36
36 // static 37 // static
37 DocumentScanInterface* DocumentScanInterface::CreateInstance() { 38 DocumentScanInterface* DocumentScanInterface::CreateInstance() {
38 return new DocumentScanInterfaceImpl(); 39 return new DocumentScanInterfaceImpl();
39 } 40 }
40 41
41 } // namespace api 42 } // namespace api
42 43
43 } // namespace extensions 44 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698