| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 EXTENSIONS_RENDERER_SCRIPTS_RUN_INFO_H_ | 5 #ifndef EXTENSIONS_RENDERER_SCRIPTS_RUN_INFO_H_ |
| 6 #define EXTENSIONS_RENDERER_SCRIPTS_RUN_INFO_H_ | 6 #define EXTENSIONS_RENDERER_SCRIPTS_RUN_INFO_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <map> | 10 #include <map> |
| 9 #include <set> | 11 #include <set> |
| 10 #include <string> | 12 #include <string> |
| 11 | 13 |
| 12 #include "base/basictypes.h" | |
| 13 #include "base/macros.h" | 14 #include "base/macros.h" |
| 14 #include "base/timer/elapsed_timer.h" | 15 #include "base/timer/elapsed_timer.h" |
| 15 #include "extensions/common/user_script.h" | 16 #include "extensions/common/user_script.h" |
| 16 | 17 |
| 17 namespace content { | 18 namespace content { |
| 18 class RenderFrame; | 19 class RenderFrame; |
| 19 } | 20 } |
| 20 | 21 |
| 21 namespace extensions { | 22 namespace extensions { |
| 22 | 23 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 55 |
| 55 // The url of the frame, preserved for the same reason as the routing id. | 56 // The url of the frame, preserved for the same reason as the routing id. |
| 56 GURL frame_url_; | 57 GURL frame_url_; |
| 57 | 58 |
| 58 DISALLOW_COPY_AND_ASSIGN(ScriptsRunInfo); | 59 DISALLOW_COPY_AND_ASSIGN(ScriptsRunInfo); |
| 59 }; | 60 }; |
| 60 | 61 |
| 61 } // namespace extensions | 62 } // namespace extensions |
| 62 | 63 |
| 63 #endif // EXTENSIONS_RENDERER_SCRIPTS_RUN_INFO_H_ | 64 #endif // EXTENSIONS_RENDERER_SCRIPTS_RUN_INFO_H_ |
| OLD | NEW |