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

Unified Diff: extensions/browser/api/networking_private/networking_private_delegate.h

Issue 1226353004: Generate all extension schema namespaces as "api" and instead vary the generated bundle names. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 5 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: extensions/browser/api/networking_private/networking_private_delegate.h
diff --git a/extensions/browser/api/networking_private/networking_private_delegate.h b/extensions/browser/api/networking_private/networking_private_delegate.h
index 8a79351d947df8fdf6d544f21d5218f3b4b73ebf..809bca99882e2b87d9b43873192e1579ecb0f256 100644
--- a/extensions/browser/api/networking_private/networking_private_delegate.h
+++ b/extensions/browser/api/networking_private/networking_private_delegate.h
@@ -23,12 +23,12 @@ namespace extensions {
class NetworkingPrivateDelegateObserver;
-namespace core_api {
+namespace api {
namespace networking_private {
struct DeviceStateProperties;
struct VerificationProperties;
} // networking_private
-} // core_api
+} // api
// Base class for platform dependent networkingPrivate API implementations.
// All inputs and results for this class use ONC values. See
@@ -43,9 +43,9 @@ class NetworkingPrivateDelegate : public KeyedService {
using NetworkListCallback = base::Callback<void(scoped_ptr<base::ListValue>)>;
using FailureCallback = base::Callback<void(const std::string&)>;
using DeviceStateList =
- ScopedVector<core_api::networking_private::DeviceStateProperties>;
+ ScopedVector<api::networking_private::DeviceStateProperties>;
using VerificationProperties =
- core_api::networking_private::VerificationProperties;
+ api::networking_private::VerificationProperties;
// The Verify* methods will be forwarded to a delegate implementation if
// provided, otherwise they will fail. A separate delegate it used so that the

Powered by Google App Engine
This is Rietveld 408576698