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

Unified Diff: net/proxy/network_delegate_error_observer.h

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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 | « net/proxy/multi_threaded_proxy_resolver_unittest.cc ('k') | net/proxy/network_delegate_error_observer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/proxy/network_delegate_error_observer.h
diff --git a/net/proxy/network_delegate_error_observer.h b/net/proxy/network_delegate_error_observer.h
deleted file mode 100644
index 6fad5780175974502b1a268806d010f6a2a8a750..0000000000000000000000000000000000000000
--- a/net/proxy/network_delegate_error_observer.h
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright (c) 2011 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 NET_PROXY_NETWORK_DELEGATE_ERROR_OBSERVER_H_
-#define NET_PROXY_NETWORK_DELEGATE_ERROR_OBSERVER_H_
-
-#include "base/compiler_specific.h"
-#include "base/memory/ref_counted.h"
-#include "net/proxy/proxy_resolver_error_observer.h"
-
-namespace base {
-class MessageLoopProxy;
-}
-
-namespace net {
-
-class NetworkDelegate;
-
-// An implementation of ProxyResolverErrorObserver that forwards PAC script
-// errors to a NetworkDelegate object on the thread it lives on.
-class NET_EXPORT_PRIVATE NetworkDelegateErrorObserver
- : public ProxyResolverErrorObserver {
- public:
- NetworkDelegateErrorObserver(NetworkDelegate* network_delegate,
- base::MessageLoopProxy* origin_loop);
- ~NetworkDelegateErrorObserver() override;
-
- // ProxyResolverErrorObserver implementation.
- void OnPACScriptError(int line_number, const base::string16& error) override;
-
- private:
- class Core;
-
- scoped_refptr<Core> core_;
-
- DISALLOW_COPY_AND_ASSIGN(NetworkDelegateErrorObserver);
-};
-
-} // namespace net
-
-#endif // NET_PROXY_NETWORK_DELEGATE_ERROR_OBSERVER_H_
« no previous file with comments | « net/proxy/multi_threaded_proxy_resolver_unittest.cc ('k') | net/proxy/network_delegate_error_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698