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

Side by Side Diff: chrome/browser/chromeos/login/registration_screen.cc

Issue 9030032: Get rid of a bunch of tab_contents.h includes from chrome. These are all trivial changes to use W... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix cros Created 8 years, 11 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) 2011 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 #include "chrome/browser/chromeos/login/registration_screen.h" 5 #include "chrome/browser/chromeos/login/registration_screen.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/string_util.h" 8 #include "base/string_util.h"
9 #include "chrome/browser/browser_process.h" 9 #include "chrome/browser/browser_process.h"
10 #include "chrome/browser/chromeos/input_method/input_method_manager.h" 10 #include "chrome/browser/chromeos/input_method/input_method_manager.h"
11 #include "chrome/browser/chromeos/input_method/input_method_util.h" 11 #include "chrome/browser/chromeos/input_method/input_method_util.h"
12 #include "chrome/browser/profiles/profile_manager.h" 12 #include "chrome/browser/profiles/profile_manager.h"
13 #include "chrome/browser/ui/views/handle_web_keyboard_event.h" 13 #include "chrome/browser/ui/views/handle_web_keyboard_event.h"
14 #include "chrome/common/url_constants.h" 14 #include "chrome/common/url_constants.h"
15 #include "content/browser/child_process_security_policy.h" 15 #include "content/browser/child_process_security_policy.h"
16 #include "content/browser/renderer_host/render_view_host.h" 16 #include "content/browser/renderer_host/render_view_host.h"
17 #include "content/browser/site_instance.h" 17 #include "content/browser/site_instance.h"
18 #include "content/browser/tab_contents/tab_contents.h"
19 #include "googleurl/src/gurl.h" 18 #include "googleurl/src/gurl.h"
20 #include "net/url_request/url_request_about_job.h" 19 #include "net/url_request/url_request_about_job.h"
21 #include "net/url_request/url_request_filter.h" 20 #include "net/url_request/url_request_filter.h"
22 21
23 using content::OpenURLParams; 22 using content::OpenURLParams;
24 using content::WebContents; 23 using content::WebContents;
25 24
26 namespace chromeos { 25 namespace chromeos {
27 26
28 namespace { 27 namespace {
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 } 150 }
152 151
153 // static 152 // static
154 net::URLRequestJob* RegistrationScreen::Factory(net::URLRequest* request, 153 net::URLRequestJob* RegistrationScreen::Factory(net::URLRequest* request,
155 const std::string& scheme) { 154 const std::string& scheme) {
156 VLOG(1) << "Handling url: " << request->url().spec().c_str(); 155 VLOG(1) << "Handling url: " << request->url().spec().c_str();
157 return new net::URLRequestAboutJob(request); 156 return new net::URLRequestAboutJob(request);
158 } 157 }
159 158
160 } // namespace chromeos 159 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/lock_window_gtk.cc ('k') | chrome/browser/chromeos/login/web_page_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698