| Index: chrome/browser/dom_ui/options/browser_options_handler.cc
|
| diff --git a/chrome/browser/dom_ui/options/browser_options_handler.cc b/chrome/browser/dom_ui/options/browser_options_handler.cc
|
| index 83d52234b94066da978225580cb267c540d027f1..95c5452e160148079cc364b08bb74485060c5931 100644
|
| --- a/chrome/browser/dom_ui/options/browser_options_handler.cc
|
| +++ b/chrome/browser/dom_ui/options/browser_options_handler.cc
|
| @@ -155,6 +155,7 @@ void BrowserOptionsHandler::SetHomePage(const ListValue* args) {
|
| !args->GetString(1, &do_fixup_string) ||
|
| !base::StringToInt(do_fixup_string, &do_fixup)) {
|
| CHECK(false);
|
| + return; // needs analysis why this is needed
|
| };
|
|
|
| if (do_fixup) {
|
| @@ -383,6 +384,7 @@ void BrowserOptionsHandler::AddStartupPage(const ListValue* args) {
|
| !args->GetString(1, &index_string) ||
|
| !base::StringToInt(index_string, &index)) {
|
| CHECK(false);
|
| + return; // needs analysis why this is needed
|
| };
|
|
|
| if (index == -1)
|
| @@ -405,6 +407,7 @@ void BrowserOptionsHandler::EditStartupPage(const ListValue* args) {
|
| !base::StringToInt(index_string, &index) ||
|
| !args->GetString(1, &url_string)) {
|
| CHECK(false);
|
| + return; // needs analysis why this is needed
|
| };
|
|
|
| if (index < 0 || index > startup_custom_pages_table_model_->RowCount()) {
|
|
|