summaryrefslogtreecommitdiffstats
path: root/webkit/glue
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-27 05:57:22 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-27 05:57:22 +0000
commit5dba679eddcb4b66c57b4b8037481e8501a675c5 (patch)
tree7854277f24f93faeaa8d0dc5233701c67b7d226f /webkit/glue
parent8935df6e2f357b1dc89e386abc0731b54b1f6be8 (diff)
downloadchromium_src-5dba679eddcb4b66c57b4b8037481e8501a675c5.zip
chromium_src-5dba679eddcb4b66c57b4b8037481e8501a675c5.tar.gz
chromium_src-5dba679eddcb4b66c57b4b8037481e8501a675c5.tar.bz2
Move NetworkListObserver out of webkit/glue
R=jam@chromium.org Review URL: https://codereview.chromium.org/20855002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@214040 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue')
-rw-r--r--webkit/glue/network_list_observer.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/webkit/glue/network_list_observer.h b/webkit/glue/network_list_observer.h
deleted file mode 100644
index 288bfa7..0000000
--- a/webkit/glue/network_list_observer.h
+++ /dev/null
@@ -1,33 +0,0 @@
-// Copyright (c) 2012 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 WEBKIT_GLUE_NETWORK_LIST_OBSERVER_H_
-#define WEBKIT_GLUE_NETWORK_LIST_OBSERVER_H_
-
-#include <vector>
-
-namespace net {
-struct NetworkInterface;
-typedef std::vector<NetworkInterface> NetworkInterfaceList;
-} // namespace net
-
-namespace webkit_glue {
-
-class NetworkListObserver {
- public:
- virtual ~NetworkListObserver() {}
-
- virtual void OnNetworkListChanged(
- const net::NetworkInterfaceList& list) = 0;
-
- protected:
- NetworkListObserver() {}
-
- private:
- DISALLOW_COPY_AND_ASSIGN(NetworkListObserver);
-};
-
-} // namespace webkit_glue
-
-#endif // WEBKIT_GLUE_NETWORK_LIST_OBSERVER_H_