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/system/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/memory/ptr_util.h" |
16 #include "base/threading/thread_task_runner_handle.h" | 16 #include "base/threading/thread_task_runner_handle.h" |
17 #include "base/values.h" | 17 #include "base/values.h" |
18 #include "chrome/browser/browser_process.h" | 18 #include "chrome/browser/browser_process.h" |
19 #include "chrome/browser/chromeos/profiles/profile_helper.h" | 19 #include "chrome/browser/chromeos/profiles/profile_helper.h" |
20 #include "chrome/browser/extensions/extension_util.h" | 20 #include "chrome/browser/extensions/extension_util.h" |
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
549 for (auto& observer : observer_list_) | 549 for (auto& observer : observer_list_) |
550 observer.OnRetryClicked(); | 550 observer.OnRetryClicked(); |
551 } else if (event == kEventOnSendFeedbackClicked) { | 551 } else if (event == kEventOnSendFeedbackClicked) { |
552 for (auto& observer : observer_list_) | 552 for (auto& observer : observer_list_) |
553 observer.OnSendFeedbackClicked(); | 553 observer.OnSendFeedbackClicked(); |
554 } else { | 554 } else { |
555 LOG(ERROR) << "Unknown message: " << event; | 555 LOG(ERROR) << "Unknown message: " << event; |
556 NOTREACHED(); | 556 NOTREACHED(); |
557 } | 557 } |
558 } | 558 } |
OLD | NEW |