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

Side by Side Diff: chrome/browser/extensions/api/messaging/incognito_connectability.h

Issue 666153002: Standardize usage of virtual/override/final in chrome/browser/extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_EXTENSIONS_API_MESSAGING_INCOGNITO_CONNECTABILITY_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_MESSAGING_INCOGNITO_CONNECTABILITY_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_MESSAGING_INCOGNITO_CONNECTABILITY_H_ 6 #define CHROME_BROWSER_EXTENSIONS_API_MESSAGING_INCOGNITO_CONNECTABILITY_H_
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "extensions/browser/browser_context_keyed_api_factory.h" 10 #include "extensions/browser/browser_context_keyed_api_factory.h"
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 // Returns true if |url| is allowed to connect from this profile, false 57 // Returns true if |url| is allowed to connect from this profile, false
58 // otherwise. If unknown, this call will block and prompt the user. 58 // otherwise. If unknown, this call will block and prompt the user.
59 bool Query(const Extension* extension, 59 bool Query(const Extension* extension,
60 content::WebContents* web_contents, 60 content::WebContents* web_contents,
61 const GURL& url); 61 const GURL& url);
62 62
63 private: 63 private:
64 friend class BrowserContextKeyedAPIFactory<IncognitoConnectability>; 64 friend class BrowserContextKeyedAPIFactory<IncognitoConnectability>;
65 65
66 explicit IncognitoConnectability(content::BrowserContext* context); 66 explicit IncognitoConnectability(content::BrowserContext* context);
67 virtual ~IncognitoConnectability(); 67 ~IncognitoConnectability() override;
68 68
69 typedef std::map<std::string, std::set<GURL> > ExtensionToOriginsMap; 69 typedef std::map<std::string, std::set<GURL> > ExtensionToOriginsMap;
70 70
71 // Returns true if the (|extension|, |origin|) pair appears in the map. 71 // Returns true if the (|extension|, |origin|) pair appears in the map.
72 bool IsInMap(const Extension* extension, 72 bool IsInMap(const Extension* extension,
73 const GURL& origin, 73 const GURL& origin,
74 const ExtensionToOriginsMap& map); 74 const ExtensionToOriginsMap& map);
75 75
76 // BrowserContextKeyedAPI implementation. 76 // BrowserContextKeyedAPI implementation.
77 static BrowserContextKeyedAPIFactory<IncognitoConnectability>* 77 static BrowserContextKeyedAPIFactory<IncognitoConnectability>*
78 GetFactoryInstance(); 78 GetFactoryInstance();
79 static const char* service_name() { 79 static const char* service_name() {
80 return "Messaging.IncognitoConnectability"; 80 return "Messaging.IncognitoConnectability";
81 } 81 }
82 static const bool kServiceHasOwnInstanceInIncognito = true; 82 static const bool kServiceHasOwnInstanceInIncognito = true;
83 static const bool kServiceIsCreatedWithBrowserContext = false; 83 static const bool kServiceIsCreatedWithBrowserContext = false;
84 84
85 // The origins that have been prompted for and either allowed or disallowed. 85 // The origins that have been prompted for and either allowed or disallowed.
86 // These are deliberately stored in-memory so that they're reset when the 86 // These are deliberately stored in-memory so that they're reset when the
87 // profile is destroyed (i.e. when the last incognito window is closed). 87 // profile is destroyed (i.e. when the last incognito window is closed).
88 ExtensionToOriginsMap allowed_origins_; 88 ExtensionToOriginsMap allowed_origins_;
89 ExtensionToOriginsMap disallowed_origins_; 89 ExtensionToOriginsMap disallowed_origins_;
90 }; 90 };
91 91
92 } // namespace extensions 92 } // namespace extensions
93 93
94 #endif // CHROME_BROWSER_EXTENSIONS_API_MESSAGING_INCOGNITO_CONNECTABILITY_H_ 94 #endif // CHROME_BROWSER_EXTENSIONS_API_MESSAGING_INCOGNITO_CONNECTABILITY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698