| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // chrome_tab.cc : Implementation of DLL Exports. | 5 // chrome_tab.cc : Implementation of DLL Exports. |
| 6 | 6 |
| 7 // Include without path to make GYP build see it. | 7 // Need to include this before the ATL headers below. |
| 8 #include "chrome_tab.h" // NOLINT | 8 #include "chrome_frame/chrome_tab.h" |
| 9 | 9 |
| 10 #include <atlsecurity.h> | 10 #include <atlsecurity.h> |
| 11 #include <objbase.h> | 11 #include <objbase.h> |
| 12 | 12 |
| 13 #include "base/at_exit.h" | 13 #include "base/at_exit.h" |
| 14 #include "base/command_line.h" | 14 #include "base/command_line.h" |
| 15 #include "base/file_util.h" | 15 #include "base/file_util.h" |
| 16 #include "base/file_version_info.h" | 16 #include "base/file_version_info.h" |
| 17 #include "base/logging.h" | 17 #include "base/logging.h" |
| 18 #include "base/logging_win.h" | 18 #include "base/logging_win.h" |
| (...skipping 897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 916 HRESULT hr = CustomRegistration(ALL, FALSE, false); | 916 HRESULT hr = CustomRegistration(ALL, FALSE, false); |
| 917 return hr; | 917 return hr; |
| 918 } | 918 } |
| 919 | 919 |
| 920 // Object entries go here instead of with each object, so that we can move | 920 // Object entries go here instead of with each object, so that we can move |
| 921 // the objects to a lib. Also reduces magic. | 921 // the objects to a lib. Also reduces magic. |
| 922 OBJECT_ENTRY_AUTO(CLSID_ChromeFrameBHO, Bho) | 922 OBJECT_ENTRY_AUTO(CLSID_ChromeFrameBHO, Bho) |
| 923 OBJECT_ENTRY_AUTO(__uuidof(ChromeActiveDocument), ChromeActiveDocument) | 923 OBJECT_ENTRY_AUTO(__uuidof(ChromeActiveDocument), ChromeActiveDocument) |
| 924 OBJECT_ENTRY_AUTO(__uuidof(ChromeFrame), ChromeFrameActivex) | 924 OBJECT_ENTRY_AUTO(__uuidof(ChromeFrame), ChromeFrameActivex) |
| 925 OBJECT_ENTRY_AUTO(__uuidof(ChromeProtocol), ChromeProtocol) | 925 OBJECT_ENTRY_AUTO(__uuidof(ChromeProtocol), ChromeProtocol) |
| OLD | NEW |