| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_INSPECTABLE_VIEWS_FINDER
_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_INSPECTABLE_VIEWS_FINDER
_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_INSPECTABLE_VIEWS_FINDER
_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_INSPECTABLE_VIEWS_FINDER
_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/memory/linked_ptr.h" | |
| 12 #include "extensions/common/view_type.h" | 11 #include "extensions/common/view_type.h" |
| 13 | 12 |
| 14 class Profile; | 13 class Profile; |
| 15 class GURL; | 14 class GURL; |
| 16 | 15 |
| 17 namespace extensions { | 16 namespace extensions { |
| 18 class Extension; | 17 class Extension; |
| 19 class ProcessManager; | 18 class ProcessManager; |
| 20 | 19 |
| 21 namespace api { | 20 namespace api { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 ViewList* result); | 64 ViewList* result); |
| 66 | 65 |
| 67 Profile* profile_; | 66 Profile* profile_; |
| 68 | 67 |
| 69 DISALLOW_COPY_AND_ASSIGN(InspectableViewsFinder); | 68 DISALLOW_COPY_AND_ASSIGN(InspectableViewsFinder); |
| 70 }; | 69 }; |
| 71 | 70 |
| 72 } // namespace extensions | 71 } // namespace extensions |
| 73 | 72 |
| 74 #endif // CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_INSPECTABLE_VIEWS_FIN
DER_H_ | 73 #endif // CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_INSPECTABLE_VIEWS_FIN
DER_H_ |
| OLD | NEW |