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

Side by Side Diff: chrome/browser/extensions/test_extension_loader.h

Issue 63056: TBR: Revert "Implement chromium.self in content scripts..." (Closed)
Patch Set: Created 11 years, 8 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
(Empty)
1 // Copyright (c) 2009 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_TEST_EXTENSION_LOADER_H_
6 #define CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_LOADER_H_
7
8 #include "chrome/browser/extensions/extension.h"
9 #include "chrome/common/notification_observer.h"
10 #include "chrome/common/notification_registrar.h"
11
12 class Extension;
13 class FilePath;
14 class Profile;
15
16 class TestExtensionLoader : public NotificationObserver {
17 public:
18 explicit TestExtensionLoader(Profile* profile);
19
20 Extension* Load(const char* extension_id, const FilePath& path);
21
22 virtual void Observe(NotificationType type,
23 const NotificationSource& source,
24 const NotificationDetails& details);
25
26 private:
27 Profile* profile_;
28 Extension* extension_;
29 NotificationRegistrar registrar_;
30 std::string loading_extension_id_;
31
32 DISALLOW_COPY_AND_ASSIGN(TestExtensionLoader);
33 };
34
35 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_LOADER_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extensions_service.cc ('k') | chrome/browser/extensions/test_extension_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698