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 CHROME_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_RENDERER_STATE_H_ | 5 #ifndef EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_RENDERER_STATE_H_ |
6 #define CHROME_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_RENDERER_STATE_H_ | 6 #define EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_RENDERER_STATE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
11 | 11 |
12 #include "base/memory/singleton.h" | 12 #include "base/memory/singleton.h" |
13 | 13 |
14 namespace extensions { | 14 namespace extensions { |
15 | 15 |
16 class WebViewGuest; | 16 class WebViewGuest; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 void RemoveGuest(int render_process_host_id, int routing_id); | 67 void RemoveGuest(int render_process_host_id, int routing_id); |
68 | 68 |
69 WebViewInfoMap webview_info_map_; | 69 WebViewInfoMap webview_info_map_; |
70 WebViewPartitionIDMap webview_partition_id_map_; | 70 WebViewPartitionIDMap webview_partition_id_map_; |
71 | 71 |
72 DISALLOW_COPY_AND_ASSIGN(WebViewRendererState); | 72 DISALLOW_COPY_AND_ASSIGN(WebViewRendererState); |
73 }; | 73 }; |
74 | 74 |
75 } // namespace extensions | 75 } // namespace extensions |
76 | 76 |
77 #endif // CHROME_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_RENDERER_STATE_H_ | 77 #endif // EXTENSIONS_BROWSER_GUEST_VIEW_WEB_VIEW_WEB_VIEW_RENDERER_STATE_H_ |
OLD | NEW |