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

Side by Side Diff: android_webview/browser/aw_contents_client_bridge_base.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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 ANDROID_WEBVIEW_BROWSER_AW_CONTENTS_CLIENT_BRIDGE_BASE_H_ 5 #ifndef ANDROID_WEBVIEW_BROWSER_AW_CONTENTS_CLIENT_BRIDGE_BASE_H_
6 #define ANDROID_WEBVIEW_BROWSER_AW_CONTENTS_CLIENT_BRIDGE_BASE_H_ 6 #define ANDROID_WEBVIEW_BROWSER_AW_CONTENTS_CLIENT_BRIDGE_BASE_H_
7 7
8 #include "base/callback_forward.h" 8 #include "base/callback_forward.h"
9 #include "base/supports_user_data.h" 9 #include "base/supports_user_data.h"
10 #include "content/public/browser/javascript_dialog_manager.h" 10 #include "content/public/browser/javascript_dialog_manager.h"
(...skipping 29 matching lines...) Expand all
40 40
41 virtual void AllowCertificateError(int cert_error, 41 virtual void AllowCertificateError(int cert_error,
42 net::X509Certificate* cert, 42 net::X509Certificate* cert,
43 const GURL& request_url, 43 const GURL& request_url,
44 const base::Callback<void(bool)>& callback, 44 const base::Callback<void(bool)>& callback,
45 bool* cancel_request) = 0; 45 bool* cancel_request) = 0;
46 46
47 virtual void RunJavaScriptDialog( 47 virtual void RunJavaScriptDialog(
48 content::JavaScriptMessageType message_type, 48 content::JavaScriptMessageType message_type,
49 const GURL& origin_url, 49 const GURL& origin_url,
50 const string16& message_text, 50 const base::string16& message_text,
51 const string16& default_prompt_text, 51 const base::string16& default_prompt_text,
52 const content::JavaScriptDialogManager::DialogClosedCallback& callback) 52 const content::JavaScriptDialogManager::DialogClosedCallback& callback)
53 = 0; 53 = 0;
54 54
55 virtual void RunBeforeUnloadDialog( 55 virtual void RunBeforeUnloadDialog(
56 const GURL& origin_url, 56 const GURL& origin_url,
57 const string16& message_text, 57 const base::string16& message_text,
58 const content::JavaScriptDialogManager::DialogClosedCallback& callback) 58 const content::JavaScriptDialogManager::DialogClosedCallback& callback)
59 = 0; 59 = 0;
60 60
61 virtual bool ShouldOverrideUrlLoading(const base::string16& url) = 0; 61 virtual bool ShouldOverrideUrlLoading(const base::string16& url) = 0;
62 }; 62 };
63 63
64 } // namespace android_webview 64 } // namespace android_webview
65 65
66 #endif // ANDROID_WEBVIEW_BROWSER_AW_CONTENTS_CLIENT_BRIDGE_BASE_H_ 66 #endif // ANDROID_WEBVIEW_BROWSER_AW_CONTENTS_CLIENT_BRIDGE_BASE_H_
OLDNEW
« no previous file with comments | « android_webview/browser/aw_content_browser_client.cc ('k') | android_webview/browser/aw_javascript_dialog_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698