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

Unified Diff: chrome/browser/automation/automation_provider.h

Issue 12220101: Minimal Chrome Frame with Aura. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert install_worker.cc to un-break win64 build Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/all.gyp ('k') | chrome/browser/automation/automation_provider.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/automation/automation_provider.h
diff --git a/chrome/browser/automation/automation_provider.h b/chrome/browser/automation/automation_provider.h
index a288308a3a3738a009beb040d2e0f220ba67b633..1c5b8b6680efa16491f3ff1da281bd3090307e85 100644
--- a/chrome/browser/automation/automation_provider.h
+++ b/chrome/browser/automation/automation_provider.h
@@ -146,7 +146,7 @@ class AutomationProvider
return reply_message;
}
-#if defined(OS_WIN) && !defined(USE_AURA)
+#if defined(OS_WIN)
// Adds the external tab passed in to the tab tracker.
bool AddExternalTab(ExternalTabContainer* external_tab);
#endif
@@ -285,7 +285,7 @@ class AutomationProvider
// Method called by the popup menu tracker when a popup menu is opened.
void NotifyPopupMenuOpened();
-#if defined(OS_WIN) && !defined(USE_AURA)
+#if defined(OS_WIN)
// The functions in this block are for use with external tabs, so they are
// Windows only.
@@ -304,16 +304,16 @@ class AutomationProvider
void OnForwardContextMenuCommandToChrome(int tab_handle, int command);
void CreateExternalTab(const ExternalTabSettings& settings,
- gfx::NativeWindow* tab_container_window,
- gfx::NativeWindow* tab_window,
+ HWND* tab_container_window,
+ HWND* tab_window,
int* tab_handle,
int* session_id);
void ConnectExternalTab(uint64 cookie,
bool allow,
- gfx::NativeWindow parent_window,
- gfx::NativeWindow* tab_container_window,
- gfx::NativeWindow* tab_window,
+ HWND parent_window,
+ HWND* tab_container_window,
+ HWND* tab_window,
int* tab_handle,
int* session_id);
@@ -335,7 +335,7 @@ class AutomationProvider
void OnSetZoomLevel(int handle, int zoom_level);
ExternalTabContainer* GetExternalTabForHandle(int handle);
-#endif // defined(OS_WIN) && !defined(USE_AURA)
+#endif // defined(OS_WIN)
scoped_ptr<IPC::ChannelProxy> channel_;
scoped_ptr<NewTabUILoadObserver> new_tab_ui_load_observer_;
« no previous file with comments | « build/all.gyp ('k') | chrome/browser/automation/automation_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698