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 CONTENT_BROWSER_DEVTOOLS_PROTOCOL_PAGE_HANDLER_H_ | 5 #ifndef CONTENT_BROWSER_DEVTOOLS_PROTOCOL_PAGE_HANDLER_H_ |
6 #define CONTENT_BROWSER_DEVTOOLS_PROTOCOL_PAGE_HANDLER_H_ | 6 #define CONTENT_BROWSER_DEVTOOLS_PROTOCOL_PAGE_HANDLER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include <stddef.h> |
| 9 |
9 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" |
10 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
11 #include "base/time/time.h" | 13 #include "base/time/time.h" |
12 #include "cc/output/compositor_frame_metadata.h" | 14 #include "cc/output/compositor_frame_metadata.h" |
13 #include "content/browser/devtools/protocol/devtools_protocol_dispatcher.h" | 15 #include "content/browser/devtools/protocol/devtools_protocol_dispatcher.h" |
14 #include "content/public/browser/notification_observer.h" | 16 #include "content/public/browser/notification_observer.h" |
15 #include "content/public/browser/notification_registrar.h" | 17 #include "content/public/browser/notification_registrar.h" |
16 #include "content/public/browser/readback_types.h" | 18 #include "content/public/browser/readback_types.h" |
17 | 19 |
18 class SkBitmap; | 20 class SkBitmap; |
19 | 21 |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 base::WeakPtrFactory<PageHandler> weak_factory_; | 125 base::WeakPtrFactory<PageHandler> weak_factory_; |
124 | 126 |
125 DISALLOW_COPY_AND_ASSIGN(PageHandler); | 127 DISALLOW_COPY_AND_ASSIGN(PageHandler); |
126 }; | 128 }; |
127 | 129 |
128 } // namespace page | 130 } // namespace page |
129 } // namespace devtools | 131 } // namespace devtools |
130 } // namespace content | 132 } // namespace content |
131 | 133 |
132 #endif // CONTENT_BROWSER_DEVTOOLS_PROTOCOL_PAGE_HANDLER_H_ | 134 #endif // CONTENT_BROWSER_DEVTOOLS_PROTOCOL_PAGE_HANDLER_H_ |
OLD | NEW |