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

Side by Side Diff: android_webview/renderer/aw_content_renderer_client.h

Issue 100453010: Add base:: to string16s in android_webview/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_ 5 #ifndef ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_
6 #define ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_ 6 #define ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_
7 7
8 #include "content/public/renderer/content_renderer_client.h" 8 #include "content/public/renderer/content_renderer_client.h"
9 9
10 #include "android_webview/renderer/aw_render_process_observer.h" 10 #include "android_webview/renderer/aw_render_process_observer.h"
(...skipping 16 matching lines...) Expand all
27 virtual void RenderViewCreated(content::RenderView* render_view) OVERRIDE; 27 virtual void RenderViewCreated(content::RenderView* render_view) OVERRIDE;
28 virtual std::string GetDefaultEncoding() OVERRIDE; 28 virtual std::string GetDefaultEncoding() OVERRIDE;
29 virtual bool HasErrorPage(int http_status_code, 29 virtual bool HasErrorPage(int http_status_code,
30 std::string* error_domain) OVERRIDE; 30 std::string* error_domain) OVERRIDE;
31 virtual void GetNavigationErrorStrings( 31 virtual void GetNavigationErrorStrings(
32 blink::WebFrame* frame, 32 blink::WebFrame* frame,
33 const blink::WebURLRequest& failed_request, 33 const blink::WebURLRequest& failed_request,
34 const blink::WebURLError& error, 34 const blink::WebURLError& error,
35 const std::string& accept_languages, 35 const std::string& accept_languages,
36 std::string* error_html, 36 std::string* error_html,
37 string16* error_description) OVERRIDE; 37 base::string16* error_description) OVERRIDE;
38 virtual unsigned long long VisitedLinkHash(const char* canonical_url, 38 virtual unsigned long long VisitedLinkHash(const char* canonical_url,
39 size_t length) OVERRIDE; 39 size_t length) OVERRIDE;
40 virtual bool IsLinkVisited(unsigned long long link_hash) OVERRIDE; 40 virtual bool IsLinkVisited(unsigned long long link_hash) OVERRIDE;
41 virtual void AddKeySystems( 41 virtual void AddKeySystems(
42 std::vector<content::KeySystemInfo>* key_systems) OVERRIDE; 42 std::vector<content::KeySystemInfo>* key_systems) OVERRIDE;
43 43
44 virtual bool HandleNavigation(content::RenderView* view, 44 virtual bool HandleNavigation(content::RenderView* view,
45 content::DocumentState* document_state, 45 content::DocumentState* document_state,
46 int opener_id, 46 int opener_id,
47 blink::WebFrame* frame, 47 blink::WebFrame* frame,
48 const blink::WebURLRequest& request, 48 const blink::WebURLRequest& request,
49 blink::WebNavigationType type, 49 blink::WebNavigationType type,
50 blink::WebNavigationPolicy default_policy, 50 blink::WebNavigationPolicy default_policy,
51 bool is_redirect) OVERRIDE; 51 bool is_redirect) OVERRIDE;
52 52
53 private: 53 private:
54 scoped_ptr<AwRenderProcessObserver> aw_render_process_observer_; 54 scoped_ptr<AwRenderProcessObserver> aw_render_process_observer_;
55 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_; 55 scoped_ptr<visitedlink::VisitedLinkSlave> visited_link_slave_;
56 }; 56 };
57 57
58 } // namespace android_webview 58 } // namespace android_webview
59 59
60 #endif // ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_ 60 #endif // ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_
OLDNEW
« no previous file with comments | « android_webview/native/state_serializer_unittests.cc ('k') | android_webview/renderer/aw_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698