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

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

Issue 143023002: Use a WebURL type for url parameter in registerProtocolHandler() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | content/renderer/render_view_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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 const blink::WebString& value); 496 const blink::WebString& value);
497 virtual blink::WebGeolocationClient* geolocationClient(); 497 virtual blink::WebGeolocationClient* geolocationClient();
498 virtual blink::WebSpeechInputController* speechInputController( 498 virtual blink::WebSpeechInputController* speechInputController(
499 blink::WebSpeechInputListener* listener); 499 blink::WebSpeechInputListener* listener);
500 virtual blink::WebSpeechRecognizer* speechRecognizer(); 500 virtual blink::WebSpeechRecognizer* speechRecognizer();
501 virtual void zoomLimitsChanged(double minimum_level, double maximum_level); 501 virtual void zoomLimitsChanged(double minimum_level, double maximum_level);
502 virtual void zoomLevelChanged(); 502 virtual void zoomLevelChanged();
503 virtual double zoomLevelToZoomFactor(double zoom_level) const; 503 virtual double zoomLevelToZoomFactor(double zoom_level) const;
504 virtual double zoomFactorToZoomLevel(double factor) const; 504 virtual double zoomFactorToZoomLevel(double factor) const;
505 virtual void registerProtocolHandler(const blink::WebString& scheme, 505 virtual void registerProtocolHandler(const blink::WebString& scheme,
506 const blink::WebString& base_url, 506 const blink::WebURL& base_url,
507 const blink::WebString& url, 507 const blink::WebURL& url,
508 const blink::WebString& title); 508 const blink::WebString& title);
509 virtual blink::WebPageVisibilityState visibilityState() const; 509 virtual blink::WebPageVisibilityState visibilityState() const;
510 virtual blink::WebUserMediaClient* userMediaClient(); 510 virtual blink::WebUserMediaClient* userMediaClient();
511 virtual blink::WebMIDIClient* webMIDIClient(); 511 virtual blink::WebMIDIClient* webMIDIClient();
512 virtual void draggableRegionsChanged(); 512 virtual void draggableRegionsChanged();
513 513
514 #if defined(OS_ANDROID) 514 #if defined(OS_ANDROID)
515 virtual void scheduleContentIntent(const blink::WebURL& intent); 515 virtual void scheduleContentIntent(const blink::WebURL& intent);
516 virtual void cancelScheduledContentIntents(); 516 virtual void cancelScheduledContentIntents();
517 virtual blink::WebContentDetectionResult detectContentAround( 517 virtual blink::WebContentDetectionResult detectContentAround(
(...skipping 992 matching lines...) Expand 10 before | Expand all | Expand 10 after
1510 // use the Observer interface to filter IPC messages and receive frame change 1510 // use the Observer interface to filter IPC messages and receive frame change
1511 // notifications. 1511 // notifications.
1512 // --------------------------------------------------------------------------- 1512 // ---------------------------------------------------------------------------
1513 1513
1514 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1514 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1515 }; 1515 };
1516 1516
1517 } // namespace content 1517 } // namespace content
1518 1518
1519 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1519 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698