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

Side by Side Diff: printing/printed_document.cc

Issue 8491043: Allow linker initialization of lazy instance (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: willchan comments + rebase Created 9 years, 1 month 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/pdf_metafile_cg_mac.cc ('k') | remoting/client/plugin/chromoting_instance.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "printing/printed_document.h" 5 #include "printing/printed_document.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 19 matching lines...) Expand all
30 30
31 struct PrintDebugDumpPath { 31 struct PrintDebugDumpPath {
32 PrintDebugDumpPath() 32 PrintDebugDumpPath()
33 : enabled(false) { 33 : enabled(false) {
34 } 34 }
35 35
36 bool enabled; 36 bool enabled;
37 FilePath debug_dump_path; 37 FilePath debug_dump_path;
38 }; 38 };
39 39
40 static base::LazyInstance<PrintDebugDumpPath> g_debug_dump_info( 40 static base::LazyInstance<PrintDebugDumpPath> g_debug_dump_info =
41 base::LINKER_INITIALIZED); 41 LAZY_INSTANCE_INITIALIZER;
42 42
43 } // namespace 43 } // namespace
44 44
45 namespace printing { 45 namespace printing {
46 46
47 PrintedDocument::PrintedDocument(const PrintSettings& settings, 47 PrintedDocument::PrintedDocument(const PrintSettings& settings,
48 PrintedPagesSource* source, 48 PrintedPagesSource* source,
49 int cookie) 49 int cookie)
50 : mutable_(source), 50 : mutable_(source),
51 immutable_(settings, source, cookie) { 51 immutable_(settings, source, cookie) {
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 : settings_(settings), 224 : settings_(settings),
225 source_message_loop_(MessageLoop::current()), 225 source_message_loop_(MessageLoop::current()),
226 name_(source->RenderSourceName()), 226 name_(source->RenderSourceName()),
227 cookie_(cookie) { 227 cookie_(cookie) {
228 } 228 }
229 229
230 PrintedDocument::Immutable::~Immutable() { 230 PrintedDocument::Immutable::~Immutable() {
231 } 231 }
232 232
233 } // namespace printing 233 } // namespace printing
OLDNEW
« no previous file with comments | « printing/pdf_metafile_cg_mac.cc ('k') | remoting/client/plugin/chromoting_instance.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698