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

Side by Side Diff: printing/backend/print_backend_dummy.cc

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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
« no previous file with comments | « printing/backend/print_backend.h ('k') | printing/backend/print_backend_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 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 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 // This is dummy implementation for all configurations where there is no 5 // This is dummy implementation for all configurations where there is no
6 // print backend. 6 // print backend.
7 #if !defined(PRINT_BACKEND_AVAILABLE) 7 #if !defined(PRINT_BACKEND_AVAILABLE)
8 8
9 #include "printing/backend/print_backend.h" 9 #include "printing/backend/print_backend.h"
10 10
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/values.h"
12 13
13 namespace printing { 14 namespace printing {
14 15
15 scoped_refptr<PrintBackend> PrintBackend::CreateInstance( 16 scoped_refptr<PrintBackend> PrintBackend::CreateInstance(
16 const DictionaryValue* print_backend_settings) { 17 const DictionaryValue* print_backend_settings) {
17 NOTREACHED(); 18 NOTREACHED();
18 return NULL; 19 return NULL;
19 } 20 }
20 21
21 } // namespace printing 22 } // namespace printing
22 23
23 #endif // PRINT_BACKEND_AVAILABLE 24 #endif // PRINT_BACKEND_AVAILABLE
OLDNEW
« no previous file with comments | « printing/backend/print_backend.h ('k') | printing/backend/print_backend_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698