| 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 "chrome/browser/process_singleton.h" | 5 #include "chrome/browser/process_singleton.h" |
| 6 | 6 |
| 7 #include <shellapi.h> | 7 #include <shellapi.h> |
| 8 | 8 |
| 9 #include "base/base_paths.h" | 9 #include "base/base_paths.h" |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
| 12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 13 #include "base/path_service.h" | |
| 14 #include "base/process/kill.h" | 13 #include "base/process/kill.h" |
| 15 #include "base/process/process_info.h" | 14 #include "base/process/process_info.h" |
| 16 #include "base/strings/string_number_conversions.h" | 15 #include "base/strings/string_number_conversions.h" |
| 17 #include "base/strings/stringprintf.h" | 16 #include "base/strings/stringprintf.h" |
| 18 #include "base/strings/utf_string_conversions.h" | 17 #include "base/strings/utf_string_conversions.h" |
| 19 #include "base/time/time.h" | 18 #include "base/time/time.h" |
| 20 #include "base/win/metro.h" | 19 #include "base/win/metro.h" |
| 21 #include "base/win/registry.h" | 20 #include "base/win/registry.h" |
| 22 #include "base/win/scoped_handle.h" | 21 #include "base/win/scoped_handle.h" |
| 23 #include "base/win/windows_version.h" | 22 #include "base/win/windows_version.h" |
| (...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 ::SetEvent(metro_activation_event.Get()); | 455 ::SetEvent(metro_activation_event.Get()); |
| 457 } | 456 } |
| 458 } | 457 } |
| 459 } | 458 } |
| 460 | 459 |
| 461 return window_.hwnd() != NULL; | 460 return window_.hwnd() != NULL; |
| 462 } | 461 } |
| 463 | 462 |
| 464 void ProcessSingleton::Cleanup() { | 463 void ProcessSingleton::Cleanup() { |
| 465 } | 464 } |
| OLD | NEW |