Index: chrome/browser/ui/intents/web_intent_picker_controller.h |
diff --git a/chrome/browser/ui/intents/web_intent_picker_controller.h b/chrome/browser/ui/intents/web_intent_picker_controller.h |
index 7789d4c6f5cd0d9063692da6f1303a1011476345..0a854614845f0d98678474cd86e054b158f30cfc 100644 |
--- a/chrome/browser/ui/intents/web_intent_picker_controller.h |
+++ b/chrome/browser/ui/intents/web_intent_picker_controller.h |
@@ -6,6 +6,11 @@ |
#define CHROME_BROWSER_UI_INTENTS_WEB_INTENT_PICKER_CONTROLLER_H_ |
#pragma once |
+#if defined(OS_ANDROID) |
Ben Goodger (Google)
2012/07/09 15:33:34
looks like you're not building this file, which im
Philippe
2012/07/09 16:22:36
I see at least these files explicitly including th
|
+// Include a dummy header for Android. Android does not use web intent (at |
+// least for now). |
+#include "chrome/browser/ui/intents/web_intent_picker_controller_android.h" |
+#else |
#include <vector> |
#include "base/compiler_specific.h" |
@@ -206,4 +211,5 @@ class WebIntentPickerController : public content::NotificationObserver, |
DISALLOW_COPY_AND_ASSIGN(WebIntentPickerController); |
}; |
+#endif // !OS_ANDROID |
#endif // CHROME_BROWSER_UI_INTENTS_WEB_INTENT_PICKER_CONTROLLER_H_ |