OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/renderer/print_web_view_helper.h" | 5 #include "chrome/renderer/print_web_view_helper.h" |
6 | 6 |
7 #include "app/l10n_util.h" | 7 #include "app/l10n_util.h" |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "base/gfx/size.h" | 9 #include "base/gfx/size.h" |
10 #include "chrome/common/render_messages.h" | 10 #include "chrome/common/render_messages.h" |
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 WebKit::WebRect* rect) { | 411 WebKit::WebRect* rect) { |
412 NOTREACHED(); | 412 NOTREACHED(); |
413 } | 413 } |
414 | 414 |
415 WebKit::WebScreenInfo PrintWebViewHelper::GetScreenInfo(WebWidget* webwidget) { | 415 WebKit::WebScreenInfo PrintWebViewHelper::GetScreenInfo(WebWidget* webwidget) { |
416 WebKit::WebScreenInfo info; | 416 WebKit::WebScreenInfo info; |
417 NOTREACHED(); | 417 NOTREACHED(); |
418 return info; | 418 return info; |
419 } | 419 } |
420 | 420 |
421 gfx::NativeViewId PrintWebViewHelper::GetContainingView(WebWidget* webwidget) { | |
422 NOTREACHED(); | |
423 return gfx::NativeViewId(); | |
424 } | |
425 | |
426 bool PrintWebViewHelper::IsHidden(WebWidget* webwidget) { | 421 bool PrintWebViewHelper::IsHidden(WebWidget* webwidget) { |
427 NOTREACHED(); | 422 NOTREACHED(); |
428 return true; | 423 return true; |
429 } | 424 } |
OLD | NEW |