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

Unified Diff: ash/common/system/networking_config_delegate.h

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: ash/common/system/networking_config_delegate.h
diff --git a/ash/common/system/networking_config_delegate.h b/ash/common/system/networking_config_delegate.h
deleted file mode 100644
index e701bf66052266c51142abcfee9d90a0b263b56a..0000000000000000000000000000000000000000
--- a/ash/common/system/networking_config_delegate.h
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef ASH_COMMON_SYSTEM_NETWORKING_CONFIG_DELEGATE_H_
-#define ASH_COMMON_SYSTEM_NETWORKING_CONFIG_DELEGATE_H_
-
-#include <memory>
-#include <string>
-
-#include "ash/ash_export.h"
-#include "base/macros.h"
-
-namespace ash {
-
-// This delegate allows the UI code in ash, e.g. |NetworkStateListDetailedView|,
-// to access the |NetworkingConfigService| in order to determine whether the
-// configuration of a network identified by its |guid| is controlled by
-// an extension.
-// TODO(crbug.com/651157): Eliminate this delegate. Information about extension
-// controlled networks should be provided by a mojo service that caches data at
-// the NetworkState level.
-class NetworkingConfigDelegate {
- public:
- // A struct that provides information about the extension controlling the
- // configuration of a network.
- struct ASH_EXPORT ExtensionInfo {
- ExtensionInfo(const std::string& id, const std::string& name);
- ~ExtensionInfo();
- std::string extension_id;
- std::string extension_name;
- };
-
- virtual ~NetworkingConfigDelegate() {}
-
- // Returns information about the extension registered to control configuration
- // of the network |guid|. Returns null if no extension is registered.
- virtual std::unique_ptr<const ExtensionInfo> LookUpExtensionForNetwork(
- const std::string& guid) = 0;
-
- private:
- DISALLOW_ASSIGN(NetworkingConfigDelegate);
-};
-
-} // namespace ash
-
-#endif // ASH_COMMON_SYSTEM_NETWORKING_CONFIG_DELEGATE_H_
« no previous file with comments | « ash/common/system/locale/locale_notification_controller.cc ('k') | ash/common/system/networking_config_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698