OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_FRAME_CHROME_FRAME_NPAPI_H_ | 5 #ifndef CHROME_FRAME_CHROME_FRAME_NPAPI_H_ |
6 #define CHROME_FRAME_CHROME_FRAME_NPAPI_H_ | 6 #define CHROME_FRAME_CHROME_FRAME_NPAPI_H_ |
7 | 7 |
8 #include <atlbase.h> | 8 #include <atlbase.h> |
9 #include <atlwin.h> | 9 #include <atlwin.h> |
10 #include <string> | 10 #include <string> |
11 | 11 |
| 12 #include "base/win/atlcheck.h" |
12 #include "chrome_frame/chrome_frame_automation.h" | 13 #include "chrome_frame/chrome_frame_automation.h" |
13 #include "chrome_frame/chrome_frame_plugin.h" | 14 #include "chrome_frame/chrome_frame_plugin.h" |
14 #include "chrome_frame/np_browser_functions.h" | 15 #include "chrome_frame/np_browser_functions.h" |
15 #include "chrome_frame/np_event_listener.h" | 16 #include "chrome_frame/np_event_listener.h" |
16 #include "chrome_frame/np_proxy_service.h" | 17 #include "chrome_frame/np_proxy_service.h" |
17 #include "chrome_frame/npapi_url_request.h" | 18 #include "chrome_frame/npapi_url_request.h" |
18 | 19 |
19 class MessageLoop; | 20 class MessageLoop; |
20 class nsICookieService; | 21 class nsICookieService; |
21 class nsIURI; | 22 class nsIURI; |
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 // The value of src property keeping the current URL. | 346 // The value of src property keeping the current URL. |
346 std::string src_; | 347 std::string src_; |
347 // Used to fetch network resources when host network stack is in use. | 348 // Used to fetch network resources when host network stack is in use. |
348 NPAPIUrlRequestManager url_fetcher_; | 349 NPAPIUrlRequestManager url_fetcher_; |
349 | 350 |
350 // Set if we receive a navigation request before initializing Chrome. | 351 // Set if we receive a navigation request before initializing Chrome. |
351 bool navigate_after_initialization_; | 352 bool navigate_after_initialization_; |
352 }; | 353 }; |
353 | 354 |
354 #endif // CHROME_FRAME_CHROME_FRAME_NPAPI_H_ | 355 #endif // CHROME_FRAME_CHROME_FRAME_NPAPI_H_ |
OLD | NEW |