Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: components/proximity_auth/webui/proximity_auth_webui_handler.cc

Issue 1970833002: Fix include path for moved thread_task_runner_handle.h header in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393009 Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "components/proximity_auth/webui/proximity_auth_webui_handler.h" 5 #include "components/proximity_auth/webui/proximity_auth_webui_handler.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/base64url.h" 10 #include "base/base64url.h"
11 #include "base/bind.h" 11 #include "base/bind.h"
12 #include "base/i18n/time_formatting.h" 12 #include "base/i18n/time_formatting.h"
13 #include "base/memory/ptr_util.h" 13 #include "base/memory/ptr_util.h"
14 #include "base/thread_task_runner_handle.h" 14 #include "base/threading/thread_task_runner_handle.h"
15 #include "base/time/default_clock.h" 15 #include "base/time/default_clock.h"
16 #include "base/time/default_tick_clock.h" 16 #include "base/time/default_tick_clock.h"
17 #include "base/values.h" 17 #include "base/values.h"
18 #include "components/prefs/pref_service.h" 18 #include "components/prefs/pref_service.h"
19 #include "components/proximity_auth/ble/pref_names.h" 19 #include "components/proximity_auth/ble/pref_names.h"
20 #include "components/proximity_auth/bluetooth_connection_finder.h" 20 #include "components/proximity_auth/bluetooth_connection_finder.h"
21 #include "components/proximity_auth/cryptauth/cryptauth_enrollment_manager.h" 21 #include "components/proximity_auth/cryptauth/cryptauth_enrollment_manager.h"
22 #include "components/proximity_auth/cryptauth/proto/cryptauth_api.pb.h" 22 #include "components/proximity_auth/cryptauth/proto/cryptauth_api.pb.h"
23 #include "components/proximity_auth/cryptauth/secure_message_delegate.h" 23 #include "components/proximity_auth/cryptauth/secure_message_delegate.h"
24 #include "components/proximity_auth/logging/logging.h" 24 #include "components/proximity_auth/logging/logging.h"
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 << "\n trust_agent_state: " 605 << "\n trust_agent_state: "
606 << static_cast<int>(status_update.trust_agent_state); 606 << static_cast<int>(status_update.trust_agent_state);
607 607
608 last_remote_status_update_.reset(new RemoteStatusUpdate(status_update)); 608 last_remote_status_update_.reset(new RemoteStatusUpdate(status_update));
609 std::unique_ptr<base::ListValue> unlock_keys = GetUnlockKeysList(); 609 std::unique_ptr<base::ListValue> unlock_keys = GetUnlockKeysList();
610 web_ui()->CallJavascriptFunction("LocalStateInterface.onUnlockKeysChanged", 610 web_ui()->CallJavascriptFunction("LocalStateInterface.onUnlockKeysChanged",
611 *unlock_keys); 611 *unlock_keys);
612 } 612 }
613 613
614 } // namespace proximity_auth 614 } // namespace proximity_auth
OLDNEW
« no previous file with comments | « components/proximity_auth/unlock_manager_unittest.cc ('k') | components/proximity_auth/webui/reachable_phone_flow.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698