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

Unified Diff: ui/chromeos/network/network_list_view_base.h

Issue 980943005: Add ash UI for third-party VPNs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@f_2_407541_434711_remove_combined_name
Patch Set: Updated after latest round of UI reviews. Created 5 years, 9 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
« no previous file with comments | « ui/chromeos/network/network_list_delegate.h ('k') | ui/chromeos/network/network_list_view_base.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/chromeos/network/network_list_view_base.h
diff --git a/ui/chromeos/network/network_list_view_base.h b/ui/chromeos/network/network_list_view_base.h
new file mode 100644
index 0000000000000000000000000000000000000000..f6cf067ae6c85e2013fc614718ded7b265ff7438
--- /dev/null
+++ b/ui/chromeos/network/network_list_view_base.h
@@ -0,0 +1,47 @@
+// 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 UI_CHROMEOS_NETWORK_NETWORK_LIST_VIEW_BASE_H_
+#define UI_CHROMEOS_NETWORK_NETWORK_LIST_VIEW_BASE_H_
+
+#include <string>
+
+#include "base/macros.h"
+#include "ui/chromeos/ui_chromeos_export.h"
+
+namespace views {
+class View;
+}
+
+namespace ui {
+
+// Base class for a list of available networks (and, in the case of VPNs, the
+// list of available VPN providers).
+class UI_CHROMEOS_EXPORT NetworkListViewBase {
+ public:
+ NetworkListViewBase();
+ virtual ~NetworkListViewBase();
+
+ void set_container(views::View* container) { container_ = container; }
+
+ // Refreshes the network list.
+ virtual void Update() = 0;
+
+ // Checks whether |view| represents a network in the list. If yes, sets
+ // |service_path| to the network's service path and returns |true|. Otherwise,
+ // leaves |sevice_path| unchanged and returns |false|.
+ virtual bool IsNetworkEntry(views::View* view,
+ std::string* service_path) const = 0;
+
+ protected:
+ // The container that holds the actual list entries.
+ views::View* container_ = nullptr;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(NetworkListViewBase);
+};
+
+} // namespace ui
+
+#endif // UI_CHROMEOS_NETWORK_NETWORK_LIST_VIEW_BASE_H_
« no previous file with comments | « ui/chromeos/network/network_list_delegate.h ('k') | ui/chromeos/network/network_list_view_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698