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

Unified Diff: chrome/app/android/chrome_main_delegate_android.h

Issue 1420053005: Move code in components/safe_browsing_db and chrome/browser/s_b/ under the safe_browsing namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@02_components_move
Patch Set: Remove '// namespace safe_browsing' for a small fwd decl block. Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/app/android/chrome_main_delegate_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/android/chrome_main_delegate_android.h
diff --git a/chrome/app/android/chrome_main_delegate_android.h b/chrome/app/android/chrome_main_delegate_android.h
index 1a34203c9246ab69de653a28d637e3db752b519f..e32571026775c5f7c781f1d710b8f2b021ecc99f 100644
--- a/chrome/app/android/chrome_main_delegate_android.h
+++ b/chrome/app/android/chrome_main_delegate_android.h
@@ -9,7 +9,9 @@
#include "chrome/app/chrome_main_delegate.h"
#include "content/public/browser/browser_main_runner.h"
+namespace safe_browsing {
class SafeBrowsingApiHandler;
+}
// Android override of ChromeMainDelegate
class ChromeMainDelegateAndroid : public ChromeMainDelegate {
@@ -28,14 +30,14 @@ class ChromeMainDelegateAndroid : public ChromeMainDelegate {
void ProcessExiting(const std::string& process_type) override;
#if defined(SAFE_BROWSING_DB_REMOTE)
- virtual SafeBrowsingApiHandler* CreateSafeBrowsingApiHandler();
+ virtual safe_browsing::SafeBrowsingApiHandler* CreateSafeBrowsingApiHandler();
#endif
private:
scoped_ptr<content::BrowserMainRunner> browser_runner_;
#if defined(SAFE_BROWSING_DB_REMOTE)
- scoped_ptr<SafeBrowsingApiHandler> safe_browsing_api_handler_;
+ scoped_ptr<safe_browsing::SafeBrowsingApiHandler> safe_browsing_api_handler_;
#endif
DISALLOW_COPY_AND_ASSIGN(ChromeMainDelegateAndroid);
« no previous file with comments | « no previous file | chrome/app/android/chrome_main_delegate_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698