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

Side by Side Diff: chrome/browser/extensions/api/developer_private/developer_private_api.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years 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 (c) 2012 The Chromium Authors. All rights reserved. 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 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_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API_H_ 6 #define CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API_H_
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "base/files/file.h" 10 #include "base/files/file.h"
(...skipping 24 matching lines...) Expand all
35 #include "ui/shell_dialogs/select_file_dialog.h" 35 #include "ui/shell_dialogs/select_file_dialog.h"
36 36
37 class Profile; 37 class Profile;
38 38
39 namespace extensions { 39 namespace extensions {
40 40
41 class EventRouter; 41 class EventRouter;
42 class ExtensionError; 42 class ExtensionError;
43 class ExtensionInfoGenerator; 43 class ExtensionInfoGenerator;
44 class ExtensionRegistry; 44 class ExtensionRegistry;
45 class ExtensionSystem;
46 class ManagementPolicy;
47 class ProcessManager; 45 class ProcessManager;
48 class RequirementsChecker;
49 46
50 namespace api { 47 namespace api {
51 48
52 class EntryPicker;
53 class EntryPickerClient; 49 class EntryPickerClient;
54 50
55 } // namespace api 51 } // namespace api
56 52
57 class DeveloperPrivateEventRouter : public ExtensionRegistryObserver, 53 class DeveloperPrivateEventRouter : public ExtensionRegistryObserver,
58 public ErrorConsole::Observer, 54 public ErrorConsole::Observer,
59 public ProcessManagerObserver, 55 public ProcessManagerObserver,
60 public AppWindowRegistry::Observer, 56 public AppWindowRegistry::Observer,
61 public CommandService::Observer, 57 public CommandService::Observer,
62 public ExtensionActionAPI::Observer, 58 public ExtensionActionAPI::Observer,
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after
608 protected: 604 protected:
609 ~DeveloperPrivateUpdateExtensionCommandFunction() override; 605 ~DeveloperPrivateUpdateExtensionCommandFunction() override;
610 ResponseAction Run() override; 606 ResponseAction Run() override;
611 }; 607 };
612 608
613 } // namespace api 609 } // namespace api
614 610
615 } // namespace extensions 611 } // namespace extensions
616 612
617 #endif // CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API _H_ 613 #endif // CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_DEVELOPER_PRIVATE_API _H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698