OLD | NEW |
1 // Copyright (c) 2010 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_frame/external_tab.h" | 5 #include "chrome_frame/external_tab.h" |
6 #include "base/lazy_instance.h" | 6 #include "base/lazy_instance.h" |
7 #include "base/tracked.h" | 7 #include "base/tracked.h" |
8 #include "base/task.h" | 8 #include "base/task.h" |
9 #include "base/synchronization/waitable_event.h" | 9 #include "base/synchronization/waitable_event.h" |
10 #include "chrome/common/automation_messages.h" | 10 #include "chrome/common/automation_messages.h" |
11 #include "chrome_frame/chrome_frame_delegate.h" | 11 #include "chrome_frame/chrome_frame_delegate.h" |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 void ExternalTabProxy::OnNetwork_Start( | 346 void ExternalTabProxy::OnNetwork_Start( |
347 int request_id, const AutomationURLRequest& request_info) { | 347 int request_id, const AutomationURLRequest& request_info) { |
348 // TODO(stoyan): url_fetcher_.Start(); | 348 // TODO(stoyan): url_fetcher_.Start(); |
349 } | 349 } |
350 | 350 |
351 void ExternalTabProxy::OnNetwork_Read(int request_id, int bytes_to_read) { | 351 void ExternalTabProxy::OnNetwork_Read(int request_id, int bytes_to_read) { |
352 // TODO(stoyan): url_fetcher_.Read(); | 352 // TODO(stoyan): url_fetcher_.Read(); |
353 } | 353 } |
354 | 354 |
355 void ExternalTabProxy::OnNetwork_End(int request_id, | 355 void ExternalTabProxy::OnNetwork_End(int request_id, |
356 const URLRequestStatus& s) { | 356 const net::URLRequestStatus& s) { |
357 // TODO(stoyan): | 357 // TODO(stoyan): |
358 } | 358 } |
359 | 359 |
360 void ExternalTabProxy::OnNetwork_DownloadInHost(int request_id) { | 360 void ExternalTabProxy::OnNetwork_DownloadInHost(int request_id) { |
361 // TODO(stoyan): | 361 // TODO(stoyan): |
362 } | 362 } |
363 | 363 |
364 void ExternalTabProxy::OnGetCookies(const GURL& url, int cookie_id) { | 364 void ExternalTabProxy::OnGetCookies(const GURL& url, int cookie_id) { |
365 // TODO(stoyan): | 365 // TODO(stoyan): |
366 } | 366 } |
367 | 367 |
368 void ExternalTabProxy::OnSetCookie(const GURL& url, const std::string& cookie) { | 368 void ExternalTabProxy::OnSetCookie(const GURL& url, const std::string& cookie) { |
369 // TODO(stoyan): | 369 // TODO(stoyan): |
370 } | 370 } |
371 | 371 |
372 void ExternalTabProxy::OnTabClosed() { | 372 void ExternalTabProxy::OnTabClosed() { |
373 // TODO(stoyan): | 373 // TODO(stoyan): |
374 } | 374 } |
375 | 375 |
376 void ExternalTabProxy::OnAttachTab( | 376 void ExternalTabProxy::OnAttachTab( |
377 const AttachExternalTabParams& attach_params) { | 377 const AttachExternalTabParams& attach_params) { |
378 // TODO(stoyan): | 378 // TODO(stoyan): |
379 } | 379 } |
OLD | NEW |