OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "athena/main/debug/network_selector.h" | 5 #include "athena/system/network_selector.h" |
6 | 6 |
7 #include "base/memory/weak_ptr.h" | 7 #include "base/memory/weak_ptr.h" |
8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "chromeos/network/network_configuration_handler.h" | 9 #include "chromeos/network/network_configuration_handler.h" |
10 #include "chromeos/network/network_connection_handler.h" | 10 #include "chromeos/network/network_connection_handler.h" |
11 #include "chromeos/network/network_handler.h" | 11 #include "chromeos/network/network_handler.h" |
12 #include "chromeos/network/network_profile_handler.h" | 12 #include "chromeos/network/network_profile_handler.h" |
13 #include "chromeos/network/network_state.h" | 13 #include "chromeos/network/network_state.h" |
14 #include "chromeos/network/network_state_handler.h" | 14 #include "chromeos/network/network_state_handler.h" |
15 #include "chromeos/network/network_state_handler_observer.h" | 15 #include "chromeos/network/network_state_handler_observer.h" |
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 | 453 |
454 views::View* connect_; | 454 views::View* connect_; |
455 | 455 |
456 ui::NetworkListView network_list_; | 456 ui::NetworkListView network_list_; |
457 | 457 |
458 DISALLOW_COPY_AND_ASSIGN(NetworkSelector); | 458 DISALLOW_COPY_AND_ASSIGN(NetworkSelector); |
459 }; | 459 }; |
460 | 460 |
461 } // namespace | 461 } // namespace |
462 | 462 |
463 namespace debug { | 463 namespace athena { |
464 | 464 |
465 void CreateNetworkSelector(aura::Window* container) { | 465 void CreateNetworkSelector(aura::Window* container) { |
466 new NetworkSelector(container); | 466 new NetworkSelector(container); |
467 } | 467 } |
468 | 468 |
469 } // namespace debug | 469 } // namespace athena |
OLD | NEW |