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

Side by Side Diff: chrome_frame/delete_chrome_history.h

Issue 8150002: 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
« no previous file with comments | « chrome_frame/chrome_protocol.h ('k') | chrome_frame/html_private_window_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 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 #ifndef CHROME_FRAME_DELETE_CHROME_HISTORY_H_ 5 #ifndef CHROME_FRAME_DELETE_CHROME_HISTORY_H_
6 #define CHROME_FRAME_DELETE_CHROME_HISTORY_H_ 6 #define CHROME_FRAME_DELETE_CHROME_HISTORY_H_
7 7
8 #include <atlbase.h> 8 #include <atlbase.h>
9 #include <atlwin.h> 9 #include <atlwin.h>
10 #include <atlcom.h> 10 #include <atlcom.h>
11 11
12 #include <deletebrowsinghistory.h> 12 #include <deletebrowsinghistory.h>
13 13
14 #include "base/message_loop.h" 14 #include "base/message_loop.h"
15 #include "chrome_frame/bho.h" 15 #include "chrome_frame/bho.h"
16 #include "chrome_frame/chrome_frame_plugin.h" 16 #include "chrome_frame/chrome_frame_plugin.h"
17 #include "chrome_frame/chrome_tab.h"
17 #include "grit/chrome_frame_resources.h" 18 #include "grit/chrome_frame_resources.h"
18 19
19 // Include without path to make GYP build see it.
20 #include "chrome_tab.h" // NOLINT
21
22 class Bho; 20 class Bho;
23 21
24 // DeleteChromeHistory: Implements IDeleteBrowsingHistory and 22 // DeleteChromeHistory: Implements IDeleteBrowsingHistory and
25 // pumps cache clearing operations over automation. Blocks the UI 23 // pumps cache clearing operations over automation. Blocks the UI
26 // thread while operating. You have been warned. 24 // thread while operating. You have been warned.
27 class ATL_NO_VTABLE DeleteChromeHistory 25 class ATL_NO_VTABLE DeleteChromeHistory
28 : public CComTearOffObjectBase<Bho, CComSingleThreadModel>, 26 : public CComTearOffObjectBase<Bho, CComSingleThreadModel>,
29 public CWindowImpl<DeleteChromeHistory>, 27 public CWindowImpl<DeleteChromeHistory>,
30 public ChromeFramePlugin<DeleteChromeHistory>, 28 public ChromeFramePlugin<DeleteChromeHistory>,
31 public IDeleteBrowsingHistory { 29 public IDeleteBrowsingHistory {
(...skipping 24 matching lines...) Expand all
56 54
57 virtual void GetProfilePath(const std::wstring& profile_name, 55 virtual void GetProfilePath(const std::wstring& profile_name,
58 FilePath* profile_path); 56 FilePath* profile_path);
59 57
60 private: 58 private:
61 unsigned long remove_mask_; 59 unsigned long remove_mask_;
62 MessageLoopForUI loop_; 60 MessageLoopForUI loop_;
63 }; 61 };
64 62
65 #endif // CHROME_FRAME_DELETE_CHROME_HISTORY_H_ 63 #endif // CHROME_FRAME_DELETE_CHROME_HISTORY_H_
OLDNEW
« no previous file with comments | « chrome_frame/chrome_protocol.h ('k') | chrome_frame/html_private_window_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698