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

Side by Side Diff: content/renderer/render_frame_impl.h

Issue 2508923003: Make printing work better with OOPIF. (try 2) (Closed)
Patch Set: Fix android_webview Created 4 years, 1 month 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
« no previous file with comments | « content/public/renderer/render_view_observer.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 const gfx::Range& replacement_range, 373 const gfx::Range& replacement_range,
374 int relative_cursor_pos); 374 int relative_cursor_pos);
375 void OnImeFinishComposingText(bool keep_selection); 375 void OnImeFinishComposingText(bool keep_selection);
376 376
377 #endif // defined(ENABLE_PLUGINS) 377 #endif // defined(ENABLE_PLUGINS)
378 378
379 // May return NULL in some cases, especially if userMediaClient() returns 379 // May return NULL in some cases, especially if userMediaClient() returns
380 // NULL. 380 // NULL.
381 MediaStreamDispatcher* GetMediaStreamDispatcher(); 381 MediaStreamDispatcher* GetMediaStreamDispatcher();
382 382
383 void ScriptedPrint(bool user_initiated);
384
383 #if defined(USE_EXTERNAL_POPUP_MENU) 385 #if defined(USE_EXTERNAL_POPUP_MENU)
384 void DidHideExternalPopupMenu(); 386 void DidHideExternalPopupMenu();
385 #endif 387 #endif
386 388
387 // IPC::Sender 389 // IPC::Sender
388 bool Send(IPC::Message* msg) override; 390 bool Send(IPC::Message* msg) override;
389 391
390 // IPC::Listener 392 // IPC::Listener
391 bool OnMessageReceived(const IPC::Message& msg) override; 393 bool OnMessageReceived(const IPC::Message& msg) override;
392 void OnAssociatedInterfaceRequest( 394 void OnAssociatedInterfaceRequest(
(...skipping 946 matching lines...) Expand 10 before | Expand all | Expand 10 after
1339 bool browser_side_navigation_pending_ = false; 1341 bool browser_side_navigation_pending_ = false;
1340 1342
1341 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; 1343 base::WeakPtrFactory<RenderFrameImpl> weak_factory_;
1342 1344
1343 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); 1345 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl);
1344 }; 1346 };
1345 1347
1346 } // namespace content 1348 } // namespace content
1347 1349
1348 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ 1350 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/renderer/render_view_observer.h ('k') | content/renderer/render_frame_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698