Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_URL_PARSER_URL_PARSER_API_H_ | |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_URL_PARSER_URL_PARSER_API_H_ | |
| 7 | |
| 8 #include "base/basictypes.h" | |
| 9 #include "chrome/browser/profiles/profile_keyed_service.h" | |
| 10 | |
| 11 class Profile; | |
| 12 | |
| 13 namespace extensions { | |
| 14 | |
| 15 class URLParserAPI : public ProfileKeyedService { | |
|
Yoyo Zhou
2012/12/27 17:16:17
Hmm, I'm not sure if this name makes sense. I thin
Joe Thomas
2012/12/30 04:26:00
Done.
| |
| 16 public: | |
| 17 explicit URLParserAPI(Profile* profile); | |
| 18 virtual ~URLParserAPI(); | |
| 19 | |
| 20 DISALLOW_COPY_AND_ASSIGN(URLParserAPI); | |
| 21 }; | |
| 22 | |
| 23 } // namespace extensions | |
| 24 | |
| 25 #endif // CHROME_BROWSER_EXTENSIONS_API_URL_PARSER_URL_PARSER_API_H_ | |
| OLD | NEW |