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

Side by Side Diff: win8/delegate_execute/delegate_execute.cc

Issue 404443003: Remove intsafe_workaround.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 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
« no previous file with comments | « sdch/sdch.gyp ('k') | win8/metro_driver/metro_driver.gyp » ('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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "build/intsafe_workaround.h"
6
7 #include <atlbase.h> 5 #include <atlbase.h>
8 #include <atlcom.h> 6 #include <atlcom.h>
9 #include <atlctl.h> 7 #include <atlctl.h>
10 #include <initguid.h> 8 #include <initguid.h>
11 #include <shellapi.h> 9 #include <shellapi.h>
12 10
13 #include "base/at_exit.h" 11 #include "base/at_exit.h"
14 #include "base/command_line.h" 12 #include "base/command_line.h"
15 #include "base/file_util.h" 13 #include "base/file_util.h"
16 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 case DelegateExecuteOperation::RELAUNCH_CHROME: 154 case DelegateExecuteOperation::RELAUNCH_CHROME:
157 ret_code = RelaunchChrome(operation); 155 ret_code = RelaunchChrome(operation);
158 break; 156 break;
159 default: 157 default:
160 NOTREACHED(); 158 NOTREACHED();
161 } 159 }
162 } 160 }
163 AtlTrace("delegate_execute exit, code = %d\n", ret_code); 161 AtlTrace("delegate_execute exit, code = %d\n", ret_code);
164 return ret_code; 162 return ret_code;
165 } 163 }
OLDNEW
« no previous file with comments | « sdch/sdch.gyp ('k') | win8/metro_driver/metro_driver.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698