OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_UTILS_H_ | 5 #ifndef CHROME_FRAME_UTILS_H_ |
6 #define CHROME_FRAME_UTILS_H_ | 6 #define CHROME_FRAME_UTILS_H_ |
7 | 7 |
8 #include <OAidl.h> | 8 #include <OAidl.h> |
9 #include <objidl.h> | 9 #include <objidl.h> |
10 #include <windows.h> | 10 #include <windows.h> |
11 #include <wininet.h> | 11 #include <wininet.h> |
12 #include <string> | 12 #include <string> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "base/basictypes.h" | 15 #include "base/basictypes.h" |
16 #include "base/logging.h" | 16 #include "base/logging.h" |
17 #include "base/metrics/histogram.h" | 17 #include "base/metrics/histogram.h" |
18 #include "base/strings/string16.h" | 18 #include "base/strings/string16.h" |
19 #include "base/win/scoped_comptr.h" | 19 #include "base/win/scoped_comptr.h" |
20 #include "googleurl/src/gurl.h" | |
21 #include "ui/gfx/rect.h" | 20 #include "ui/gfx/rect.h" |
| 21 #include "url/gurl.h" |
22 | 22 |
23 class RegistryListPreferencesHolder; | 23 class RegistryListPreferencesHolder; |
24 interface IBrowserService; | 24 interface IBrowserService; |
25 interface IWebBrowser2; | 25 interface IWebBrowser2; |
26 struct ContextMenuModel; | 26 struct ContextMenuModel; |
27 | 27 |
28 namespace base { | 28 namespace base { |
29 class FilePath; | 29 class FilePath; |
30 } | 30 } |
31 | 31 |
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
602 // increase the connection count once per process. | 602 // increase the connection count once per process. |
603 // Returns true on success. | 603 // Returns true on success. |
604 bool IncreaseWinInetConnections(DWORD connections); | 604 bool IncreaseWinInetConnections(DWORD connections); |
605 | 605 |
606 // Sets |profile_path| to the path for the Chrome Frame |profile_name| | 606 // Sets |profile_path| to the path for the Chrome Frame |profile_name| |
607 // profile. | 607 // profile. |
608 void GetChromeFrameProfilePath(const string16& profile_name, | 608 void GetChromeFrameProfilePath(const string16& profile_name, |
609 base::FilePath* profile_path); | 609 base::FilePath* profile_path); |
610 | 610 |
611 #endif // CHROME_FRAME_UTILS_H_ | 611 #endif // CHROME_FRAME_UTILS_H_ |
OLD | NEW |