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

Side by Side Diff: chrome/browser/automation/automation_provider.h

Issue 1353002: Reverting this CL to see if this fixes chrome frame unit test failures.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 9 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 | « no previous file | chrome/browser/automation/automation_provider.cc » ('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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 // This implements a browser-side endpoint for UI automation activity. 5 // This implements a browser-side endpoint for UI automation activity.
6 // The client-side endpoint is implemented by AutomationProxy. 6 // The client-side endpoint is implemented by AutomationProxy.
7 // The entire lifetime of this object should be contained within that of 7 // The entire lifetime of this object should be contained within that of
8 // the BrowserProcess, and in particular the NotificationService that's 8 // the BrowserProcess, and in particular the NotificationService that's
9 // hung off of it. 9 // hung off of it.
10 10
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 int* tab_handle); 352 int* tab_handle);
353 353
354 void ConnectExternalTab(uint64 cookie, 354 void ConnectExternalTab(uint64 cookie,
355 bool allow, 355 bool allow,
356 gfx::NativeWindow* tab_container_window, 356 gfx::NativeWindow* tab_container_window,
357 gfx::NativeWindow* tab_window, 357 gfx::NativeWindow* tab_window,
358 int* tab_handle); 358 int* tab_handle);
359 359
360 void OnSetPageFontSize(int tab_handle, int font_size); 360 void OnSetPageFontSize(int tab_handle, int font_size);
361 361
362 // See browsing_data_remover.h for explanation of bitmap fields.
363 void RemoveBrowsingData(int remove_mask);
364
365 void InstallExtension(const FilePath& crx_path, 362 void InstallExtension(const FilePath& crx_path,
366 IPC::Message* reply_message); 363 IPC::Message* reply_message);
367 364
368 void LoadExpandedExtension(const FilePath& extension_dir, 365 void LoadExpandedExtension(const FilePath& extension_dir,
369 IPC::Message* reply_message); 366 IPC::Message* reply_message);
370 367
371 void GetEnabledExtensions(std::vector<FilePath>* result); 368 void GetEnabledExtensions(std::vector<FilePath>* result);
372 369
373 void NavigateInExternalTab( 370 void NavigateInExternalTab(
374 int handle, const GURL& url, const GURL& referrer, 371 int handle, const GURL& url, const GURL& referrer,
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 virtual void Observe(NotificationType type, 669 virtual void Observe(NotificationType type,
673 const NotificationSource& source, 670 const NotificationSource& source,
674 const NotificationDetails& details); 671 const NotificationDetails& details);
675 672
676 void OnRemoveProvider(); // Called via PostTask 673 void OnRemoveProvider(); // Called via PostTask
677 674
678 NotificationRegistrar registrar_; 675 NotificationRegistrar registrar_;
679 }; 676 };
680 677
681 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_ 678 #endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_PROVIDER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/automation/automation_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698