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

Side by Side Diff: cloud_print/service/win/cloud_print_service_config.cc

Issue 735053002: Prefix CommandLine usage with base namespace (Part 7: cloud_print/) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « cloud_print/service/win/cloud_print_service.cc ('k') | cloud_print/service/win/installer.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 <atlbase.h> 5 #include <atlbase.h>
6 #include <atlapp.h> // NOLINT 6 #include <atlapp.h> // NOLINT
7 7
8 #include "base/at_exit.h" 8 #include "base/at_exit.h"
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/callback_helpers.h" 10 #include "base/callback_helpers.h"
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 : public ATL::CAtlExeModuleT<CloudPrintServiceConfigModule> { 436 : public ATL::CAtlExeModuleT<CloudPrintServiceConfigModule> {
437 }; 437 };
438 438
439 CloudPrintServiceConfigModule _AtlModule; 439 CloudPrintServiceConfigModule _AtlModule;
440 440
441 int WINAPI WinMain(__in HINSTANCE hInstance, 441 int WINAPI WinMain(__in HINSTANCE hInstance,
442 __in HINSTANCE hPrevInstance, 442 __in HINSTANCE hPrevInstance,
443 __in LPSTR lpCmdLine, 443 __in LPSTR lpCmdLine,
444 __in int nCmdShow) { 444 __in int nCmdShow) {
445 base::AtExitManager at_exit; 445 base::AtExitManager at_exit;
446 CommandLine::Init(0, NULL); 446 base::CommandLine::Init(0, NULL);
447 447
448 base::MessageLoopForUI loop; 448 base::MessageLoopForUI loop;
449 scoped_refptr<SetupDialog> dialog(new SetupDialog()); 449 scoped_refptr<SetupDialog> dialog(new SetupDialog());
450 dialog->Create(NULL); 450 dialog->Create(NULL);
451 dialog->ShowWindow(SW_SHOW); 451 dialog->ShowWindow(SW_SHOW);
452 SetupDialog::Dispatcher dispatcher(dialog); 452 SetupDialog::Dispatcher dispatcher(dialog);
453 base::RunLoop run_loop(&dispatcher); 453 base::RunLoop run_loop(&dispatcher);
454 run_loop.Run(); 454 run_loop.Run();
455 return 0; 455 return 0;
456 } 456 }
OLDNEW
« no previous file with comments | « cloud_print/service/win/cloud_print_service.cc ('k') | cloud_print/service/win/installer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698