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

Side by Side Diff: chrome/browser/views/options/content_page_view.cc

Issue 3066014: Cleanup: Remove unneeded headers from app/ (part 2) (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase Created 10 years, 4 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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/views/options/content_page_view.h" 5 #include "chrome/browser/views/options/content_page_view.h"
6 6
7 #include <windows.h> 7 #include <windows.h>
8 #include <shlobj.h> 8 #include <shlobj.h>
9 #include <vsstyle.h> 9 #include <vsstyle.h>
10 #include <vssym32.h> 10 #include <vssym32.h>
11 11
12 #include "app/l10n_util.h" 12 #include "app/l10n_util.h"
13 #include "app/resource_bundle.h"
14 #include "base/command_line.h" 13 #include "base/command_line.h"
15 #include "base/string_util.h" 14 #include "base/string_util.h"
16 #include "chrome/browser/autofill/autofill_dialog.h" 15 #include "chrome/browser/autofill/autofill_dialog.h"
17 #include "chrome/browser/autofill/personal_data_manager.h" 16 #include "chrome/browser/autofill/personal_data_manager.h"
18 #include "chrome/browser/browser.h" 17 #include "chrome/browser/browser.h"
19 #include "chrome/browser/browser_list.h" 18 #include "chrome/browser/browser_list.h"
20 #include "chrome/browser/browser_process.h" 19 #include "chrome/browser/browser_process.h"
21 #include "chrome/browser/browser_window.h" 20 #include "chrome/browser/browser_window.h"
22 #include "chrome/browser/importer/importer_data_types.h" 21 #include "chrome/browser/importer/importer_data_types.h"
23 #include "chrome/browser/profile.h" 22 #include "chrome/browser/profile.h"
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 sync_action_link_->SetEnabled(!managed); 484 sync_action_link_->SetEnabled(!managed);
486 485
487 if (status_has_error) { 486 if (status_has_error) {
488 sync_status_label_->set_background(CreateErrorBackground()); 487 sync_status_label_->set_background(CreateErrorBackground());
489 sync_action_link_->set_background(CreateErrorBackground()); 488 sync_action_link_->set_background(CreateErrorBackground());
490 } else { 489 } else {
491 sync_status_label_->set_background(NULL); 490 sync_status_label_->set_background(NULL);
492 sync_action_link_->set_background(NULL); 491 sync_action_link_->set_background(NULL);
493 } 492 }
494 } 493 }
OLDNEW
« no previous file with comments | « chrome/browser/views/options/advanced_contents_view.cc ('k') | chrome/browser/views/options/content_settings_window_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698