| OLD | NEW | 
|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/chromeos/arc/arc_support_host.h" | 5 #include "chrome/browser/chromeos/arc/arc_support_host.h" | 
| 6 | 6 | 
| 7 #include <string> | 7 #include <string> | 
| 8 #include <utility> | 8 #include <utility> | 
| 9 | 9 | 
| 10 #include "ash/common/system/chromeos/devicetype_utils.h" | 10 #include "ash/common/system/chromeos/devicetype_utils.h" | 
| 11 #include "base/bind.h" | 11 #include "base/bind.h" | 
| 12 #include "base/i18n/timezone.h" | 12 #include "base/i18n/timezone.h" | 
| 13 #include "base/json/json_reader.h" | 13 #include "base/json/json_reader.h" | 
| 14 #include "base/json/json_writer.h" | 14 #include "base/json/json_writer.h" | 
|  | 15 #include "base/memory/ptr_util.h" | 
| 15 #include "base/threading/thread_task_runner_handle.h" | 16 #include "base/threading/thread_task_runner_handle.h" | 
| 16 #include "base/values.h" | 17 #include "base/values.h" | 
| 17 #include "chrome/browser/browser_process.h" | 18 #include "chrome/browser/browser_process.h" | 
| 18 #include "chrome/browser/chromeos/profiles/profile_helper.h" | 19 #include "chrome/browser/chromeos/profiles/profile_helper.h" | 
| 19 #include "chrome/browser/extensions/extension_util.h" | 20 #include "chrome/browser/extensions/extension_util.h" | 
| 20 #include "chrome/browser/profiles/profile.h" | 21 #include "chrome/browser/profiles/profile.h" | 
| 21 #include "chrome/browser/ui/ash/multi_user/multi_user_util.h" | 22 #include "chrome/browser/ui/ash/multi_user/multi_user_util.h" | 
| 22 #include "chrome/browser/ui/extensions/app_launch_params.h" | 23 #include "chrome/browser/ui/extensions/app_launch_params.h" | 
| 23 #include "chrome/browser/ui/extensions/application_launch.h" | 24 #include "chrome/browser/ui/extensions/application_launch.h" | 
| 24 #include "chrome/grit/generated_resources.h" | 25 #include "chrome/grit/generated_resources.h" | 
| (...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 543     for (auto& observer : observer_list_) | 544     for (auto& observer : observer_list_) | 
| 544       observer.OnRetryClicked(); | 545       observer.OnRetryClicked(); | 
| 545   } else if (event == kEventOnSendFeedbackClicked) { | 546   } else if (event == kEventOnSendFeedbackClicked) { | 
| 546     for (auto& observer : observer_list_) | 547     for (auto& observer : observer_list_) | 
| 547       observer.OnSendFeedbackClicked(); | 548       observer.OnSendFeedbackClicked(); | 
| 548   } else { | 549   } else { | 
| 549     LOG(ERROR) << "Unknown message: " << event; | 550     LOG(ERROR) << "Unknown message: " << event; | 
| 550     NOTREACHED(); | 551     NOTREACHED(); | 
| 551   } | 552   } | 
| 552 } | 553 } | 
| OLD | NEW | 
|---|