OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chrome/browser/automation/automation_provider.h" | 5 #include "chrome/browser/automation/automation_provider.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
667 return; | 667 return; |
668 } | 668 } |
669 | 669 |
670 if (tab_tracker_->ContainsHandle(tab_handle)) { | 670 if (tab_tracker_->ContainsHandle(tab_handle)) { |
671 NavigationController* tab = tab_tracker_->GetResource(tab_handle); | 671 NavigationController* tab = tab_tracker_->GetResource(tab_handle); |
672 DCHECK(tab != NULL); | 672 DCHECK(tab != NULL); |
673 if (tab && tab->GetWebContents()) { | 673 if (tab && tab->GetWebContents()) { |
674 DCHECK(tab->GetWebContents()->GetBrowserContext() != NULL); | 674 DCHECK(tab->GetWebContents()->GetBrowserContext() != NULL); |
675 Profile* profile = Profile::FromBrowserContext( | 675 Profile* profile = Profile::FromBrowserContext( |
676 tab->GetWebContents()->GetBrowserContext()); | 676 tab->GetWebContents()->GetBrowserContext()); |
677 profile->GetPrefs()->SetInteger( | 677 profile->GetPrefs()->SetInteger(prefs::kWebKitDefaultFontSize, font_size); |
678 prefs::kWebKitGlobalDefaultFontSize, font_size); | |
679 } | 678 } |
680 } | 679 } |
681 } | 680 } |
682 | 681 |
683 void AutomationProvider::RemoveBrowsingData(int remove_mask) { | 682 void AutomationProvider::RemoveBrowsingData(int remove_mask) { |
684 BrowsingDataRemover* remover; | 683 BrowsingDataRemover* remover; |
685 remover = new BrowsingDataRemover(profile(), | 684 remover = new BrowsingDataRemover(profile(), |
686 BrowsingDataRemover::EVERYTHING, // All time periods. | 685 BrowsingDataRemover::EVERYTHING, // All time periods. |
687 base::Time()); | 686 base::Time()); |
688 remover->Remove(remove_mask); | 687 remover->Remove(remove_mask); |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
757 | 756 |
758 return NULL; | 757 return NULL; |
759 } | 758 } |
760 | 759 |
761 void AutomationProvider::SaveAsAsync(int tab_handle) { | 760 void AutomationProvider::SaveAsAsync(int tab_handle) { |
762 NavigationController* tab = NULL; | 761 NavigationController* tab = NULL; |
763 WebContents* web_contents = GetWebContentsForHandle(tab_handle, &tab); | 762 WebContents* web_contents = GetWebContentsForHandle(tab_handle, &tab); |
764 if (web_contents) | 763 if (web_contents) |
765 web_contents->OnSavePage(); | 764 web_contents->OnSavePage(); |
766 } | 765 } |
OLD | NEW |