OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FRAME_HOST_FRAME_TREE_NODE_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 |
8 #include <string> | 10 #include <string> |
9 #include <vector> | 11 #include <vector> |
10 | 12 |
11 #include "base/basictypes.h" | 13 #include "base/macros.h" |
12 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
13 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
14 #include "content/browser/frame_host/render_frame_host_impl.h" | 16 #include "content/browser/frame_host/render_frame_host_impl.h" |
15 #include "content/browser/frame_host/render_frame_host_manager.h" | 17 #include "content/browser/frame_host/render_frame_host_manager.h" |
16 #include "content/common/content_export.h" | 18 #include "content/common/content_export.h" |
17 #include "content/common/frame_replication_state.h" | 19 #include "content/common/frame_replication_state.h" |
18 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h" | 20 #include "third_party/WebKit/public/web/WebFrameOwnerProperties.h" |
19 #include "url/gurl.h" | 21 #include "url/gurl.h" |
20 #include "url/origin.h" | 22 #include "url/origin.h" |
21 | 23 |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 base::ObserverList<Observer> observers_; | 323 base::ObserverList<Observer> observers_; |
322 | 324 |
323 base::TimeTicks last_focus_time_; | 325 base::TimeTicks last_focus_time_; |
324 | 326 |
325 DISALLOW_COPY_AND_ASSIGN(FrameTreeNode); | 327 DISALLOW_COPY_AND_ASSIGN(FrameTreeNode); |
326 }; | 328 }; |
327 | 329 |
328 } // namespace content | 330 } // namespace content |
329 | 331 |
330 #endif // CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_ | 332 #endif // CONTENT_BROWSER_FRAME_HOST_FRAME_TREE_NODE_H_ |
OLD | NEW |