OLD | NEW |
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 |
5 #include <atlbase.h> | 7 #include <atlbase.h> |
6 #include <atlcom.h> | 8 #include <atlcom.h> |
7 #include <atlctl.h> | 9 #include <atlctl.h> |
8 #include <initguid.h> | 10 #include <initguid.h> |
9 #include <shellapi.h> | 11 #include <shellapi.h> |
10 | 12 |
11 #include "base/at_exit.h" | 13 #include "base/at_exit.h" |
12 #include "base/command_line.h" | 14 #include "base/command_line.h" |
13 #include "base/file_util.h" | 15 #include "base/file_util.h" |
14 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 case DelegateExecuteOperation::RELAUNCH_CHROME: | 125 case DelegateExecuteOperation::RELAUNCH_CHROME: |
124 ret_code = RelaunchChrome(operation); | 126 ret_code = RelaunchChrome(operation); |
125 break; | 127 break; |
126 default: | 128 default: |
127 NOTREACHED(); | 129 NOTREACHED(); |
128 } | 130 } |
129 } | 131 } |
130 AtlTrace("delegate_execute exit, code = %d\n", ret_code); | 132 AtlTrace("delegate_execute exit, code = %d\n", ret_code); |
131 return ret_code; | 133 return ret_code; |
132 } | 134 } |
OLD | NEW |