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

Unified Diff: net/base/net_module.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/base/net_log_util_unittest.cc ('k') | net/base/net_module.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/net_module.h
diff --git a/net/base/net_module.h b/net/base/net_module.h
deleted file mode 100644
index 4ac8ab3a9653681f603d31cc00c786522685fb7d..0000000000000000000000000000000000000000
--- a/net/base/net_module.h
+++ /dev/null
@@ -1,39 +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_BASE_NET_MODULE_H__
-#define NET_BASE_NET_MODULE_H__
-
-#include "base/basictypes.h"
-#include "base/strings/string_piece.h"
-#include "net/base/net_export.h"
-
-namespace net {
-
-// Defines global initializers and associated methods for the net module.
-//
-// The network module does not have direct access to the way application
-// resources are stored and fetched by the embedding application (e.g., it
-// cannot see the ResourceBundle class used by Chrome), so it uses this API to
-// get access to such resources.
-//
-class NET_EXPORT NetModule {
- public:
- typedef base::StringPiece (*ResourceProvider)(int key);
-
- // Set the function to call when the net module needs resources
- static void SetResourceProvider(ResourceProvider func);
-
- // Call the resource provider (if one exists) to get the specified resource.
- // Returns an empty string if the resource does not exist or if there is no
- // resource provider.
- static base::StringPiece GetResource(int key);
-
- private:
- DISALLOW_IMPLICIT_CONSTRUCTORS(NetModule);
-};
-
-} // namespace net
-
-#endif // NET_BASE_NET_MODULE_H__
« no previous file with comments | « net/base/net_log_util_unittest.cc ('k') | net/base/net_module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698