Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Side by Side Diff: chrome_frame/chrome_tab.cc

Issue 8317018: Have Chrome Frame build its .idl artifacts into a sub-folder of SHARED_INTERMEDIATE_DIR, a global... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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"
grt (UTC plus 2) 2011/10/18 15:56:24 should this still have // NOLINT since it appears
robertshield 2011/10/18 17:31:10 It would appear not.
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
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)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698