chromium/chrome/browser/ui/translate/translate_bubble_factory.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ui/translate/translate_bubble_factory.h"

#include <string>

#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/browser_window.h"
#include "components/translate/core/browser/translate_step.h"

namespace {

ShowTranslateBubbleResult ShowDefault(BrowserWindow* window,
                                      content::WebContents* web_contents,
                                      translate::TranslateStep step,
                                      const std::string& source_language,
                                      const std::string& target_language,
                                      translate::TranslateErrors error_type,
                                      bool is_user_gesture) {}

}  // namespace

TranslateBubbleFactory::~TranslateBubbleFactory() {}

// static
ShowTranslateBubbleResult TranslateBubbleFactory::Show(
    BrowserWindow* window,
    content::WebContents* web_contents,
    translate::TranslateStep step,
    const std::string& source_language,
    const std::string& target_language,
    translate::TranslateErrors error_type,
    bool is_user_gesture) {}

// static
void TranslateBubbleFactory::SetFactory(TranslateBubbleFactory* factory) {}

// static
TranslateBubbleFactory* TranslateBubbleFactory::current_factory_ =;