OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/ui/views/new_task_manager_view.h" | 5 #include "chrome/browser/ui/views/new_task_manager_view.h" |
6 | 6 |
| 7 #include <stddef.h> |
| 8 |
7 #include "base/prefs/pref_service.h" | 9 #include "base/prefs/pref_service.h" |
| 10 #include "build/build_config.h" |
8 #include "chrome/browser/browser_process.h" | 11 #include "chrome/browser/browser_process.h" |
9 #include "chrome/browser/profiles/profile_manager.h" | 12 #include "chrome/browser/profiles/profile_manager.h" |
10 #include "chrome/browser/profiles/profile_window.h" | 13 #include "chrome/browser/profiles/profile_window.h" |
11 #include "chrome/browser/task_management/task_manager_observer.h" | 14 #include "chrome/browser/task_management/task_manager_observer.h" |
12 #include "chrome/browser/ui/browser_navigator_params.h" | 15 #include "chrome/browser/ui/browser_navigator_params.h" |
13 #include "chrome/browser/ui/task_manager/task_manager_columns.h" | 16 #include "chrome/browser/ui/task_manager/task_manager_columns.h" |
14 #include "chrome/browser/ui/user_manager.h" | 17 #include "chrome/browser/ui/user_manager.h" |
15 #include "chrome/common/pref_names.h" | 18 #include "chrome/common/pref_names.h" |
16 #include "chrome/common/url_constants.h" | 19 #include "chrome/common/url_constants.h" |
17 #include "chrome/grit/chromium_strings.h" | 20 #include "chrome/grit/chromium_strings.h" |
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 if (!g_browser_process->local_state()) | 422 if (!g_browser_process->local_state()) |
420 return; | 423 return; |
421 | 424 |
422 const base::DictionaryValue* dictionary = | 425 const base::DictionaryValue* dictionary = |
423 g_browser_process->local_state()->GetDictionary(GetWindowName()); | 426 g_browser_process->local_state()->GetDictionary(GetWindowName()); |
424 if (dictionary) | 427 if (dictionary) |
425 dictionary->GetBoolean("always_on_top", &is_always_on_top_); | 428 dictionary->GetBoolean("always_on_top", &is_always_on_top_); |
426 } | 429 } |
427 | 430 |
428 } // namespace task_management | 431 } // namespace task_management |
OLD | NEW |