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

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

Issue 1320253002: Merge ChromeMainDelegateStagingAndroid into ChromeMainDelegateAndroid. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
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 d03019c842092996e8f592cce4d978d8f19323aa..d680aebb4b77158792fbd99184fb2e6744ddf59d 100644
--- a/chrome/app/android/chrome_main_delegate_android.h
+++ b/chrome/app/android/chrome_main_delegate_android.h
@@ -8,6 +8,8 @@
#include "chrome/app/chrome_main_delegate.h"
#include "content/public/browser/browser_main_runner.h"
+class SafeBrowsingApiHandler;
+
// Android override of ChromeMainDelegate
class ChromeMainDelegateAndroid : public ChromeMainDelegate {
public:
@@ -18,16 +20,23 @@ class ChromeMainDelegateAndroid : public ChromeMainDelegate {
~ChromeMainDelegateAndroid() override;
bool BasicStartupComplete(int* exit_code) override;
-
void SandboxInitialized(const std::string& process_type) override;
-
int RunProcess(
const std::string& process_type,
const content::MainFunctionParams& main_function_params) override;
+ void ProcessExiting(const std::string& process_type) override;
+
+#if defined(SAFE_BROWSING_DB_REMOTE)
+ virtual SafeBrowsingApiHandler* CreateSafeBrowsingApiHandler();
+#endif
private:
scoped_ptr<content::BrowserMainRunner> browser_runner_;
+#if defined(SAFE_BROWSING_DB_REMOTE)
+ scoped_ptr<SafeBrowsingApiHandler> safe_browsing_api_handler_;
+#endif
+
DISALLOW_COPY_AND_ASSIGN(ChromeMainDelegateAndroid);
};

Powered by Google App Engine
This is Rietveld 408576698