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/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" | 20 #include "googleurl/src/gurl.h" |
21 #include "ui/gfx/rect.h" | 21 #include "ui/gfx/rect.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 { |
(...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
596 // increase the connection count once per process. | 596 // increase the connection count once per process. |
597 // Returns true on success. | 597 // Returns true on success. |
598 bool IncreaseWinInetConnections(DWORD connections); | 598 bool IncreaseWinInetConnections(DWORD connections); |
599 | 599 |
600 // Sets |profile_path| to the path for the Chrome Frame |profile_name| | 600 // Sets |profile_path| to the path for the Chrome Frame |profile_name| |
601 // profile. | 601 // profile. |
602 void GetChromeFrameProfilePath(const string16& profile_name, | 602 void GetChromeFrameProfilePath(const string16& profile_name, |
603 base::FilePath* profile_path); | 603 base::FilePath* profile_path); |
604 | 604 |
605 #endif // CHROME_FRAME_UTILS_H_ | 605 #endif // CHROME_FRAME_UTILS_H_ |
OLD | NEW |